共用方式為


NewCell Constructors

Definition

Overloads

NewCell()

Initializes a new instance of the NewCell class.

NewCell(OpenXmlElement[])

Initializes a new instance of the NewCell class with the specified child elements.

NewCell(IEnumerable<OpenXmlElement>)

Initializes a new instance of the NewCell class with the specified child elements.

NewCell(String)

Initializes a new instance of the NewCell class from outer XML.

NewCell()

Initializes a new instance of the NewCell class.

public NewCell ();
Public Sub New ()

Applies to

NewCell(OpenXmlElement[])

Initializes a new instance of the NewCell class with the specified child elements.

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

Parameters

childElements
OpenXmlElement[]

Specifies the child elements.

Applies to

NewCell(IEnumerable<OpenXmlElement>)

Initializes a new instance of the NewCell class with the specified child elements.

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

Parameters

childElements
IEnumerable<OpenXmlElement>

Specifies the child elements.

Applies to

NewCell(String)

Initializes a new instance of the NewCell class from outer XML.

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

Parameters

outerXml
String

Specifies the outer XML of the element.

Applies to