OpenXmlCompositeElement.InsertAt<T>(T, Int32) 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 at the specified index of the current element's children.
public override T InsertAt<T> (T newChild, int index) where T : DocumentFormat.OpenXml.OpenXmlElement;
public override T? InsertAt<T> (T? newChild, int index) where T : DocumentFormat.OpenXml.OpenXmlElement;
override this.InsertAt : 'T * int -> 'T (requires 'T :> DocumentFormat.OpenXml.OpenXmlElement)
Public Overrides Function InsertAt(Of T As OpenXmlElement) (newChild As T, index As Integer) As T
Type Parameters
- T
Parameters
- newChild
- T
The OpenXmlElement element to insert.
- index
- Int32
The zero-based index to insert the element to.
Returns
T
The OpenXmlElement element that was inserted.
Exceptions
Thrown when index
is less than 0 or is greater than the count of children.
Remarks
Returns null
if newChild
equals null
.