Body 构造函数

定义

重载

Body()

初始化 Body 类的新实例。

Body(OpenXmlElement[])

使用指定的子元素初始化 Body 类的新实例。

Body(IEnumerable<OpenXmlElement>)

使用指定的子元素初始化 Body 类的新实例。

Body(String)

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

Body()

初始化 Body 类的新实例。

public Body ();
Public Sub New ()

适用于

Body(OpenXmlElement[])

使用指定的子元素初始化 Body 类的新实例。

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

参数

childElements
OpenXmlElement[]

指定子元素。

适用于

Body(IEnumerable<OpenXmlElement>)

使用指定的子元素初始化 Body 类的新实例。

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

参数

childElements
IEnumerable<OpenXmlElement>

指定子元素。

适用于

Body(String)

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

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

参数

outerXml
String

指定 元素的外部 XML。

适用于