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