Run コンストラクター

定義

オーバーロード

Run()

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

Run(OpenXmlElement[])

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

Run(IEnumerable<OpenXmlElement>)

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

Run(String)

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

Run()

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

public Run ();
Public Sub New ()

適用対象

Run(OpenXmlElement[])

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

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

パラメーター

childElements
OpenXmlElement[]

子要素を指定します。

適用対象

Run(IEnumerable<OpenXmlElement>)

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

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

パラメーター

childElements
IEnumerable<OpenXmlElement>

子要素を指定します。

適用対象

Run(String)

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

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

パラメーター

outerXml
String

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

適用対象