 | OpenXmlReaderCreate(OpenXmlElement, Boolean) Method |
Creates an OpenXmlReader from the OpenXmlElement (travel the DOM tree).
Namespace: DocumentFormat.OpenXmlAssembly: DocumentFormat.OpenXml (in DocumentFormat.OpenXml.dll) Version: 2.11.3+Branch.master.Sha.3fcdea311b5a001803ff150de35c25fd4cd62f93.3fcdea311b5a001803ff150de35c25fd4cd62f93
Syntaxpublic static OpenXmlReader Create(
OpenXmlElement openXmlElement,
bool readMiscNodes
)
Public Shared Function Create (
openXmlElement As OpenXmlElement,
readMiscNodes As Boolean
) As OpenXmlReader
public:
static OpenXmlReader^ Create(
OpenXmlElement^ openXmlElement,
bool readMiscNodes
)
static member Create :
openXmlElement : OpenXmlElement *
readMiscNodes : bool -> OpenXmlReader 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.
Return Value
OpenXmlReaderThe newly created OpenXmlReader.
See Also