次の方法で共有


Iterate コンストラクター

定義

オーバーロード

Iterate()

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

Iterate(OpenXmlElement[])

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

Iterate(IEnumerable<OpenXmlElement>)

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

Iterate(String)

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

Iterate()

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

public Iterate ();
Public Sub New ()

適用対象

Iterate(OpenXmlElement[])

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

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

パラメーター

childElements
OpenXmlElement[]

子要素を指定します。

適用対象

Iterate(IEnumerable<OpenXmlElement>)

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

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

パラメーター

childElements
IEnumerable<OpenXmlElement>

子要素を指定します。

適用対象

Iterate(String)

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

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

パラメーター

outerXml
String

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

適用対象