Share via


Sequence Constructors

Definition

Overloads

Sequence()

Initializes a new instance of the Sequence class.

Sequence(OpenXmlElement[])

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

Sequence(IEnumerable<OpenXmlElement>)

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

Sequence(String)

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

Sequence()

Initializes a new instance of the Sequence class.

public Sequence ();
Public Sub New ()

Applies to

Sequence(OpenXmlElement[])

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

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

Parameters

childElements
OpenXmlElement[]

Specifies the child elements.

Applies to

Sequence(IEnumerable<OpenXmlElement>)

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

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

Parameters

childElements
IEnumerable<OpenXmlElement>

Specifies the child elements.

Applies to

Sequence(String)

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

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

Parameters

outerXml
String

Specifies the outer XML of the element.

Applies to