Share via


Compiler Constructors

Definition

Overloads

Compiler()

Initializes a new instance of the Compiler class.

Compiler(OpenXmlElement[])

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

Compiler(IEnumerable<OpenXmlElement>)

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

Compiler(String)

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

Compiler()

Initializes a new instance of the Compiler class.

public Compiler ();
Public Sub New ()

Applies to

Compiler(OpenXmlElement[])

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

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

Parameters

childElements
OpenXmlElement[]

Specifies the child elements.

Applies to

Compiler(IEnumerable<OpenXmlElement>)

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

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

Parameters

childElements
IEnumerable<OpenXmlElement>

Specifies the child elements.

Applies to

Compiler(String)

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

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

Parameters

outerXml
String

Specifies the outer XML of the element.

Applies to