OpenXmlCompositeElement.InsertAt<T>(T, Int32) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Insère l’élément spécifié à l’index spécifié des enfants de l’élément actuel.
public override T InsertAt<T> (T newChild, int index) where T : DocumentFormat.OpenXml.OpenXmlElement;
public override T? InsertAt<T> (T? newChild, int index) where T : DocumentFormat.OpenXml.OpenXmlElement;
override this.InsertAt : 'T * int -> 'T (requires 'T :> DocumentFormat.OpenXml.OpenXmlElement)
Public Overrides Function InsertAt(Of T As OpenXmlElement) (newChild As T, index As Integer) As T
Paramètres de type
- T
Paramètres
- newChild
- T
Élément OpenXmlElement à insérer.
- index
- Int32
Index de base zéro dans laquelle insérer l’élément.
Retours
Élément OpenXmlElement qui a été inséré.
Exceptions
Levée lorsque index
est inférieur à 0 ou supérieur au nombre d’enfants.
Remarques
Retourne null
si newChild
est égal à null
.