次の方法で共有


Body コンストラクター

定義

オーバーロード

Body()

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

Body(OpenXmlElement[])

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

Body(IEnumerable<OpenXmlElement>)

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

Body(String)

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

Body()

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

public Body ();
Public Sub New ()

適用対象

Body(OpenXmlElement[])

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

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

パラメーター

childElements
OpenXmlElement[]

子要素を指定します。

適用対象

Body(IEnumerable<OpenXmlElement>)

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

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

パラメーター

childElements
IEnumerable<OpenXmlElement>

子要素を指定します。

適用対象

Body(String)

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

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

パラメーター

outerXml
String

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

適用対象