VTArray Constructors

Definition

Overloads

VTArray()

Initializes a new instance of the VTArray class.

VTArray(OpenXmlElement[])

Initializes a new instance of the VTArray class with the specified child elements.

VTArray(IEnumerable<OpenXmlElement>)

Initializes a new instance of the VTArray class with the specified child elements.

VTArray(String)

Initializes a new instance of the VTArray class from outer XML.

VTArray()

Initializes a new instance of the VTArray class.

public VTArray ();
Public Sub New ()

Applies to

VTArray(OpenXmlElement[])

Initializes a new instance of the VTArray class with the specified child elements.

public VTArray (params DocumentFormat.OpenXml.OpenXmlElement[] childElements);
new DocumentFormat.OpenXml.VariantTypes.VTArray : DocumentFormat.OpenXml.OpenXmlElement[] -> DocumentFormat.OpenXml.VariantTypes.VTArray
Public Sub New (ParamArray childElements As OpenXmlElement())

Parameters

childElements
OpenXmlElement[]

Specifies the child elements.

Applies to

VTArray(IEnumerable<OpenXmlElement>)

Initializes a new instance of the VTArray class with the specified child elements.

public VTArray (System.Collections.Generic.IEnumerable<DocumentFormat.OpenXml.OpenXmlElement> childElements);
new DocumentFormat.OpenXml.VariantTypes.VTArray : seq<DocumentFormat.OpenXml.OpenXmlElement> -> DocumentFormat.OpenXml.VariantTypes.VTArray
Public Sub New (childElements As IEnumerable(Of OpenXmlElement))

Parameters

childElements
IEnumerable<OpenXmlElement>

Specifies the child elements.

Applies to

VTArray(String)

Initializes a new instance of the VTArray class from outer XML.

public VTArray (string outerXml);
new DocumentFormat.OpenXml.VariantTypes.VTArray : string -> DocumentFormat.OpenXml.VariantTypes.VTArray
Public Sub New (outerXml As String)

Parameters

outerXml
String

Specifies the outer XML of the element.

Applies to