Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Inserts the specified element immediately after the specified reference element.
Namespace: DocumentFormat.OpenXml
Assembly: DocumentFormat.OpenXml (in DocumentFormat.OpenXml.dll)
Syntax
'Declaration
Public Overridable Function InsertAfter(Of T As OpenXmlElement) ( _
newChild As T, _
refChild As OpenXmlElement _
) As T
'Usage
Dim instance As OpenXmlElement
Dim newChild As T
Dim refChild As OpenXmlElement
Dim returnValue As T
returnValue = instance.InsertAfter(newChild, _
refChild)
public virtual T InsertAfter<T>(
T newChild,
OpenXmlElement refChild
)
where T : OpenXmlElement
Type Parameters
- T
Parameters
- newChild
Type: T
The OpenXmlElement to insert.
- refChild
Type: DocumentFormat.OpenXml.OpenXmlElement
The OpenXmlElement that is the reference node. The newChild is placed after the refChild.
Return Value
Type: T
The OpenXmlElement being inserted.