OpenXmlElement.Append Method (IEnumerable<OpenXmlElement>)
Adds the elements to the end of the list of child nodes, of this element.
Namespace: DocumentFormat.OpenXml
Assembly: DocumentFormat.OpenXml (in DocumentFormat.OpenXml.dll)
Syntax
'Declaration
Public Sub Append ( _
newChildren As IEnumerable(Of OpenXmlElement) _
)
'Usage
Dim instance As OpenXmlElement
Dim newChildren As IEnumerable(Of OpenXmlElement)
instance.Append(newChildren)
public void Append(
IEnumerable<OpenXmlElement> newChildren
)
Parameters
- newChildren
Type: System.Collections.Generic.IEnumerable<OpenXmlElement>
The OpenXmlElement's to be appended.