次の方法で共有


Path コンストラクター

定義

オーバーロード

Path()

Path クラスの新しいインスタンスを初期化します。

Path(OpenXmlElement[])

指定した子要素を使用して、Path クラスの新しいインスタンスを初期化します。

Path(IEnumerable<OpenXmlElement>)

指定した子要素を使用して、Path クラスの新しいインスタンスを初期化します。

Path(String)

外部 XML から Path クラスの新しいインスタンスを初期化します。

Path()

Path クラスの新しいインスタンスを初期化します。

public Path ();
Public Sub New ()

適用対象

Path(OpenXmlElement[])

指定した子要素を使用して、Path クラスの新しいインスタンスを初期化します。

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())

パラメーター

childElements
OpenXmlElement[]

子要素を指定します。

適用対象

Path(IEnumerable<OpenXmlElement>)

指定した子要素を使用して、Path クラスの新しいインスタンスを初期化します。

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))

パラメーター

childElements
IEnumerable<OpenXmlElement>

子要素を指定します。

適用対象

Path(String)

外部 XML から Path クラスの新しいインスタンスを初期化します。

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

パラメーター

outerXml
String

要素の外部 XML を指定します。

適用対象