OpenXmlElement.AppendChild<T> Method
Adds the specified element to the end of the list of child nodes, of this element.
Namespace: DocumentFormat.OpenXml
Assembly: DocumentFormat.OpenXml (in DocumentFormat.OpenXml.dll)
Syntax
声明
Public Overridable Function AppendChild(Of T As OpenXmlElement) ( _
newChild As T _
) As T
用法
Dim instance As OpenXmlElement
Dim newChild As T
Dim returnValue As T
returnValue = instance.AppendChild(newChild)
public virtual T AppendChild<T>(
T newChild
)
where T : OpenXmlElement
Type Parameters
- T
Parameters
- newChild
Type: T
The OpenXmlElement to append.
Return Value
Type: T
The OpenXmlElement being appended.