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;
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 to be inserted.
- index
- Int32
The zero-based index at which element should be inserted.
Returns
- T
The OpenXmlElement element that was inserted.
Remarks
No change if the (newChild == null). Just return null.