次の方法で共有


Comments コンストラクター

定義

オーバーロード

Comments()

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

Comments(OpenXmlElement[])

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

Comments(IEnumerable<OpenXmlElement>)

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

Comments(String)

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

Comments()

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

public Comments ();
Public Sub New ()

適用対象

Comments(OpenXmlElement[])

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

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

パラメーター

childElements
OpenXmlElement[]

子要素を指定します。

適用対象

Comments(IEnumerable<OpenXmlElement>)

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

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

パラメーター

childElements
IEnumerable<OpenXmlElement>

子要素を指定します。

適用対象

Comments(String)

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

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

パラメーター

outerXml
String

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

適用対象