Row コンストラクター

定義

オーバーロード

Row()

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

Row(OpenXmlElement[])

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

Row(IEnumerable<OpenXmlElement>)

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

Row(String)

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

Row()

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

public Row ();
Public Sub New ()

適用対象

Row(OpenXmlElement[])

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

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

パラメーター

childElements
OpenXmlElement[]

子要素を指定します。

適用対象

Row(IEnumerable<OpenXmlElement>)

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

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

パラメーター

childElements
IEnumerable<OpenXmlElement>

子要素を指定します。

適用対象

Row(String)

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

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

パラメーター

outerXml
String

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

適用対象