Query コンストラクター

定義

オーバーロード

Query()

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

Query(OpenXmlElement[])

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

Query(IEnumerable<OpenXmlElement>)

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

Query(String)

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

Query()

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

public Query ();
Public Sub New ()

適用対象

Query(OpenXmlElement[])

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

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

パラメーター

childElements
OpenXmlElement[]

子要素を指定します。

適用対象

Query(IEnumerable<OpenXmlElement>)

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

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

パラメーター

childElements
IEnumerable<OpenXmlElement>

子要素を指定します。

適用対象

Query(String)

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

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

パラメーター

outerXml
String

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

適用対象