CustomXmlRow Constructors

Definition

Overloads

CustomXmlRow()

Initializes a new instance of the CustomXmlRow class.

CustomXmlRow(OpenXmlElement[])

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

CustomXmlRow(IEnumerable<OpenXmlElement>)

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

CustomXmlRow(String)

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

CustomXmlRow()

Initializes a new instance of the CustomXmlRow class.

public CustomXmlRow ();
Public Sub New ()

Applies to

CustomXmlRow(OpenXmlElement[])

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

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

Parameters

childElements
OpenXmlElement[]

Specifies the child elements.

Applies to

CustomXmlRow(IEnumerable<OpenXmlElement>)

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

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

Parameters

childElements
IEnumerable<OpenXmlElement>

Specifies the child elements.

Applies to

CustomXmlRow(String)

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

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

Parameters

outerXml
String

Specifies the outer XML of the element.

Applies to