CustomXmlCell 构造函数

定义

重载

CustomXmlCell()

初始化 CustomXmlCell 类的新实例。

CustomXmlCell(OpenXmlElement[])

初始化与指定的子元素的 CustomXmlCell 类的新实例。

CustomXmlCell(IEnumerable<OpenXmlElement>)

初始化与指定的子元素的 CustomXmlCell 类的新实例。

CustomXmlCell(String)

初始化从外部 XML CustomXmlCell 类的新实例。

CustomXmlCell()

初始化 CustomXmlCell 类的新实例。

public CustomXmlCell ();
Public Sub New ()

适用于

CustomXmlCell(OpenXmlElement[])

初始化与指定的子元素的 CustomXmlCell 类的新实例。

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

参数

childElements
OpenXmlElement[]

指定的子元素。

适用于

CustomXmlCell(IEnumerable<OpenXmlElement>)

初始化与指定的子元素的 CustomXmlCell 类的新实例。

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

参数

childElements
IEnumerable<OpenXmlElement>

指定的子元素。

适用于

CustomXmlCell(String)

初始化从外部 XML CustomXmlCell 类的新实例。

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

参数

outerXml
String

指定外部 XML 元素。

适用于