OpenXmlCompositeElement.AppendChild<T>(T) 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.
Ajoute l’élément spécifié à la fin de la liste des nœuds enfants de l’élément actuel.
public override T AppendChild<T> (T newChild) where T : DocumentFormat.OpenXml.OpenXmlElement;
public override T? AppendChild<T> (T? newChild) where T : DocumentFormat.OpenXml.OpenXmlElement;
override this.AppendChild : 'T -> 'T (requires 'T :> DocumentFormat.OpenXml.OpenXmlElement)
Public Overrides Function AppendChild(Of T As OpenXmlElement) (newChild As T) As T
Paramètres de type
- T
Paramètres
- newChild
- T
Élément OpenXmlElement à ajouter.
Retours
T
Élément OpenXmlElement ajouté.
Remarques
Retourne null si newChild
est égal à null
.