Settings 构造函数

定义

重载

Settings()

初始化 Settings 类的新实例。

Settings(OpenXmlElement[])

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

Settings(IEnumerable<OpenXmlElement>)

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

Settings(String)

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

Settings()

初始化 Settings 类的新实例。

public Settings ();
Public Sub New ()

适用于

Settings(OpenXmlElement[])

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

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

参数

childElements
OpenXmlElement[]

指定子元素。

适用于

Settings(IEnumerable<OpenXmlElement>)

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

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

参数

childElements
IEnumerable<OpenXmlElement>

指定子元素。

适用于

Settings(String)

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

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

参数

outerXml
String

指定 元素的外部 XML。

适用于