Share via


OpenXmlDomReader Constructors

Definition

Overloads

OpenXmlDomReader(OpenXmlElement)

Initializes a new instance of the OpenXmlDomReader class.

OpenXmlDomReader(OpenXmlElement, Boolean)

Initializes a new instance of the OpenXmlDomReader class using the supplied OpenXmlElement and Boolean values.

OpenXmlDomReader(OpenXmlElement)

Initializes a new instance of the OpenXmlDomReader class.

public OpenXmlDomReader (DocumentFormat.OpenXml.OpenXmlElement openXmlElement);
new DocumentFormat.OpenXml.OpenXmlDomReader : DocumentFormat.OpenXml.OpenXmlElement -> DocumentFormat.OpenXml.OpenXmlDomReader
Public Sub New (openXmlElement As OpenXmlElement)

Parameters

openXmlElement
OpenXmlElement

The OpenXmlElement to read.

Applies to

OpenXmlDomReader(OpenXmlElement, Boolean)

Initializes a new instance of the OpenXmlDomReader class using the supplied OpenXmlElement and Boolean values.

public OpenXmlDomReader (DocumentFormat.OpenXml.OpenXmlElement openXmlElement, bool readMiscNodes);
new DocumentFormat.OpenXml.OpenXmlDomReader : DocumentFormat.OpenXml.OpenXmlElement * bool -> DocumentFormat.OpenXml.OpenXmlDomReader
Public Sub New (openXmlElement As OpenXmlElement, readMiscNodes As Boolean)

Parameters

openXmlElement
OpenXmlElement

The OpenXmlElement to read.

readMiscNodes
Boolean

Specify false to indicate to the reader to skip all miscellaneous nodes. The default value is false.

Applies to