OpenXmlElement.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é dans la liste des éléments enfants de l’élément actuel.
public virtual T InsertAt<T> (T newChild, int index) where T : DocumentFormat.OpenXml.OpenXmlElement;
public virtual T InsertAt<T> (T? newChild, int index) where T : DocumentFormat.OpenXml.OpenXmlElement;
public virtual T? InsertAt<T> (T? newChild, int index) where T : DocumentFormat.OpenXml.OpenXmlElement;
abstract member InsertAt : 'T * int -> 'T (requires 'T :> DocumentFormat.OpenXml.OpenXmlElement)
override this.InsertAt : 'T * int -> 'T (requires 'T :> DocumentFormat.OpenXml.OpenXmlElement)
Public Overridable 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 lequel l’élément doit être inséré.
Retours
T
Élément OpenXmlElement qui a été inséré.
Remarques
Retourne null
si newChild
est égal à null
.