次の方法で共有


Command コンストラクター

定義

オーバーロード

Command()

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

Command(OpenXmlElement[])

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

Command(IEnumerable<OpenXmlElement>)

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

Command(String)

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

Command()

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

public Command ();
Public Sub New ()

適用対象

Command(OpenXmlElement[])

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

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

パラメーター

childElements
OpenXmlElement[]

子要素を指定します。

適用対象

Command(IEnumerable<OpenXmlElement>)

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

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

パラメーター

childElements
IEnumerable<OpenXmlElement>

子要素を指定します。

適用対象

Command(String)

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

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

パラメーター

outerXml
String

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

適用対象