OpenXmlElement.InsertAt<T>(T, Int32) Method

Definition

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 nullif newChild equals null.

Applies to