共用方式為


BuildSubElement Constructors

Definition

Overloads

BuildSubElement()

Initializes a new instance of the BuildSubElement class.

BuildSubElement(OpenXmlElement[])

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

BuildSubElement(IEnumerable<OpenXmlElement>)

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

BuildSubElement(String)

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

BuildSubElement()

Initializes a new instance of the BuildSubElement class.

public BuildSubElement ();
Public Sub New ()

Applies to

BuildSubElement(OpenXmlElement[])

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

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

Parameters

childElements
OpenXmlElement[]

Specifies the child elements.

Applies to

BuildSubElement(IEnumerable<OpenXmlElement>)

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

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

Parameters

childElements
IEnumerable<OpenXmlElement>

Specifies the child elements.

Applies to

BuildSubElement(String)

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

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

Parameters

outerXml
String

Specifies the outer XML of the element.

Applies to