Iterate コンストラクター

定義

オーバーロード

Iterate()

反復対象のクラスの新しいインスタンスを初期化します。

Iterate(OpenXmlElement[])

指定した子要素を走査するクラスの新しいインスタンスを初期化します。

Iterate(IEnumerable<OpenXmlElement>)

指定した子要素を走査するクラスの新しいインスタンスを初期化します。

Iterate(String)

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

Iterate()

反復対象のクラスの新しいインスタンスを初期化します。

public Iterate ();
Public Sub New ()

適用対象

Iterate(OpenXmlElement[])

指定した子要素を走査するクラスの新しいインスタンスを初期化します。

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

指定した子要素を走査するクラスの新しいインスタンスを初期化します。

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 から走査するクラスの新しいインスタンスを初期化します。

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

パラメーター

outerXml
String

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

適用対象