OpenXmlElement.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 in the current element's list of child elements.
public virtual T InsertAt<T> (T newChild, int index) where T : DocumentFormat.OpenXml.OpenXmlElement;
public virtual T InsertAt<T> (T? newChild, int index) where T : DocumentFormat.OpenXml.OpenXmlElement;
public virtual T? InsertAt<T> (T? newChild, int index) where T : DocumentFormat.OpenXml.OpenXmlElement;
abstract member InsertAt : 'T * int -> 'T (requires 'T :> DocumentFormat.OpenXml.OpenXmlElement)
override this.InsertAt : 'T * int -> 'T (requires 'T :> DocumentFormat.OpenXml.OpenXmlElement)
Public Overridable 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 where the element is to be inserted.
Returns
T
The OpenXmlElement element that was inserted.
Remarks
Returns null
if newChild
equals null
.