Path Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Path() |
Initializes a new instance of the Path class. |
Path(OpenXmlElement[]) |
Initializes a new instance of the Path class with the specified child elements. |
Path(IEnumerable<OpenXmlElement>) |
Initializes a new instance of the Path class with the specified child elements. |
Path(String) |
Initializes a new instance of the Path class from outer XML. |
Path()
Initializes a new instance of the Path class.
public Path ();
Public Sub New ()
Applies to
Path(OpenXmlElement[])
Initializes a new instance of the Path class with the specified child elements.
public Path (params DocumentFormat.OpenXml.OpenXmlElement[] childElements);
new DocumentFormat.OpenXml.Drawing.Path : DocumentFormat.OpenXml.OpenXmlElement[] -> DocumentFormat.OpenXml.Drawing.Path
Public Sub New (ParamArray childElements As OpenXmlElement())
Parameters
- childElements
- OpenXmlElement[]
Specifies the child elements.
Applies to
Path(IEnumerable<OpenXmlElement>)
Initializes a new instance of the Path class with the specified child elements.
public Path (System.Collections.Generic.IEnumerable<DocumentFormat.OpenXml.OpenXmlElement> childElements);
new DocumentFormat.OpenXml.Drawing.Path : seq<DocumentFormat.OpenXml.OpenXmlElement> -> DocumentFormat.OpenXml.Drawing.Path
Public Sub New (childElements As IEnumerable(Of OpenXmlElement))
Parameters
- childElements
- IEnumerable<OpenXmlElement>
Specifies the child elements.
Applies to
Path(String)
Initializes a new instance of the Path class from outer XML.
public Path (string outerXml);
new DocumentFormat.OpenXml.Drawing.Path : string -> DocumentFormat.OpenXml.Drawing.Path
Public Sub New (outerXml As String)
Parameters
- outerXml
- String
Specifies the outer XML of the element.