共用方式為


OpenXmlUnknownElement Constructors

Definition

Overloads

OpenXmlUnknownElement()

OpenXmlUnknownElement constructor

OpenXmlUnknownElement(String)

Initializes a new instance of the OpenXmlUnknownElement class using the supplied element name.

OpenXmlUnknownElement(String, String)

Initializes a new instance of the OpenXmlUnknownElement class using the supplied qualified element name and namespace URI.

OpenXmlUnknownElement(String, String, String)

Initializes a new instance of the OpenXmlUnknownElement class using the supplied prefix, local name, and namespace URI.

OpenXmlUnknownElement()

OpenXmlUnknownElement constructor

protected internal OpenXmlUnknownElement ();
Protected Friend Sub New ()

Applies to

OpenXmlUnknownElement(String)

Initializes a new instance of the OpenXmlUnknownElement class using the supplied element name.

public OpenXmlUnknownElement (string name);
new DocumentFormat.OpenXml.OpenXmlUnknownElement : string -> DocumentFormat.OpenXml.OpenXmlUnknownElement
Public Sub New (name As String)

Parameters

name
String

The element name.

Applies to

OpenXmlUnknownElement(String, String)

Initializes a new instance of the OpenXmlUnknownElement class using the supplied qualified element name and namespace URI.

public OpenXmlUnknownElement (string qualifiedName, string namespaceUri);
new DocumentFormat.OpenXml.OpenXmlUnknownElement : string * string -> DocumentFormat.OpenXml.OpenXmlUnknownElement
Public Sub New (qualifiedName As String, namespaceUri As String)

Parameters

qualifiedName
String

The qualified element name.

namespaceUri
String

The namespace URI of the element.

Applies to

OpenXmlUnknownElement(String, String, String)

Initializes a new instance of the OpenXmlUnknownElement class using the supplied prefix, local name, and namespace URI.

public OpenXmlUnknownElement (string prefix, string localName, string namespaceUri);
new DocumentFormat.OpenXml.OpenXmlUnknownElement : string * string * string -> DocumentFormat.OpenXml.OpenXmlUnknownElement
Public Sub New (prefix As String, localName As String, namespaceUri As String)

Parameters

prefix
String

The namespace prefix of the element.

localName
String

The local name of the element.

namespaceUri
String

The namespace URI of the element.

Applies to