OpenXmlElement.InsertBeforeSelf<T>(T) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Inserts the specified element immediately before the current element.
public T InsertBeforeSelf<T> (T newElement) where T : DocumentFormat.OpenXml.OpenXmlElement;
member this.InsertBeforeSelf : 'T -> 'T (requires 'T :> DocumentFormat.OpenXml.OpenXmlElement)
Public Function InsertBeforeSelf(Of T As OpenXmlElement) (newElement As T) As T
Type Parameters
- T
Parameters
- newElement
- T
The new element to insert.
Returns
T
The inserted element.
Exceptions
Thrown when the newElement
parameter is a null reference.
Thrown when the parent is a null reference.