OpenXmlElement.Append Method

Definition

Overloads

Append(OpenXmlElement[])

Appends each element from an array of elements to the end of the current element's list of child elements.

Append(IEnumerable<OpenXmlElement>)

Appends each element from a list of elements to the end of the current element's list of child elements.

Append(OpenXmlElement[])

Appends each element from an array of elements to the end of the current element's list of child elements.

public void Append (params DocumentFormat.OpenXml.OpenXmlElement[] newChildren);
member this.Append : DocumentFormat.OpenXml.OpenXmlElement[] -> unit
Public Sub Append (ParamArray newChildren As OpenXmlElement())

Parameters

newChildren
OpenXmlElement[]

The array of OpenXmlElement elements to be appended.

Applies to

Append(IEnumerable<OpenXmlElement>)

Appends each element from a list of elements to the end of the current element's list of child elements.

public void Append (System.Collections.Generic.IEnumerable<DocumentFormat.OpenXml.OpenXmlElement> newChildren);
member this.Append : seq<DocumentFormat.OpenXml.OpenXmlElement> -> unit
Public Sub Append (newChildren As IEnumerable(Of OpenXmlElement))

Parameters

newChildren
IEnumerable<OpenXmlElement>

The list that contains the OpenXmlElement elements to be appended.

Applies to