PathList Constructors

Definition

Overloads

PathList()

Initializes a new instance of the PathList class.

PathList(OpenXmlElement[])

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

PathList(IEnumerable<OpenXmlElement>)

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

PathList(String)

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

PathList()

Initializes a new instance of the PathList class.

public PathList ();
Public Sub New ()

Applies to

PathList(OpenXmlElement[])

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

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

Parameters

childElements
OpenXmlElement[]

Specifies the child elements.

Applies to

PathList(IEnumerable<OpenXmlElement>)

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

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

Parameters

childElements
IEnumerable<OpenXmlElement>

Specifies the child elements.

Applies to

PathList(String)

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

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

Parameters

outerXml
String

Specifies the outer XML of the element.

Applies to