Share via


Base Constructors

Definition

Overloads

Base()

Initializes a new instance of the Base class.

Base(OpenXmlElement[])

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

Base(IEnumerable<OpenXmlElement>)

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

Base(String)

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

Base()

Initializes a new instance of the Base class.

public Base ();
Public Sub New ()

Applies to

Base(OpenXmlElement[])

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

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

Parameters

childElements
OpenXmlElement[]

Specifies the child elements.

Applies to

Base(IEnumerable<OpenXmlElement>)

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

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

Parameters

childElements
IEnumerable<OpenXmlElement>

Specifies the child elements.

Applies to

Base(String)

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

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

Parameters

outerXml
String

Specifies the outer XML of the element.

Applies to