OpenXmlCompositeElement.InsertAfter<T>(T, OpenXmlElement) 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é immédiatement après l’élément de référence spécifié.
public override T InsertAfter<T> (T newChild, DocumentFormat.OpenXml.OpenXmlElement referenceChild) where T : DocumentFormat.OpenXml.OpenXmlElement;
public override T InsertAfter<T> (T newChild, DocumentFormat.OpenXml.OpenXmlElement? referenceChild) where T : DocumentFormat.OpenXml.OpenXmlElement;
public override T? InsertAfter<T> (T? newChild, DocumentFormat.OpenXml.OpenXmlElement? referenceChild) where T : DocumentFormat.OpenXml.OpenXmlElement;
public override T InsertAfter<T> (T newChild, DocumentFormat.OpenXml.OpenXmlElement refChild) where T : DocumentFormat.OpenXml.OpenXmlElement;
override this.InsertAfter : 'T * DocumentFormat.OpenXml.OpenXmlElement -> 'T (requires 'T :> DocumentFormat.OpenXml.OpenXmlElement)
override this.InsertAfter : 'T * DocumentFormat.OpenXml.OpenXmlElement -> 'T (requires 'T :> DocumentFormat.OpenXml.OpenXmlElement)
Public Overrides Function InsertAfter(Of T As OpenXmlElement) (newChild As T, referenceChild As OpenXmlElement) As T
Public Overrides Function InsertAfter(Of T As OpenXmlElement) (newChild As T, refChild As OpenXmlElement) As T
Paramètres de type
- T
Paramètres
- newChild
- T
Élément OpenXmlElement à insérer.
- referenceChildrefChild
- OpenXmlElement
L’élément OpenXmlElement après lequel newChild
doit être ajouté. Doit être un enfant de cet élément.
Retours
Élément OpenXmlElement qui a été inséré.
Remarques
Retourne null
si newChild
a la valeur null. Inséré en tant que premier enfant si referenceChild
a la valeur null
.