Specifies the type of a Word document node.
[Visual Basic]
Public Enum NodeType
Members
| Member Name | Description | Value |
| Any | Indicates all node types. Allows to select all children. | 0 |
| Document |
A Document object that, as the root of the document tree, provides access to the entire Word document.
A Document node can have Section nodes.
| 1 |
| Section |
A Section object that corresponds to one section in a Word document.
A Section node can have Body and HeaderFooter nodes.
| 2 |
| Body |
A Body object that contains the main text of a section (main text story).
A Body node can have Paragraph and Table nodes.
| 3 |
| HeaderFooter |
A HeaderFooter object that contains text of a particular header or footer inside a section.
A HeaderFooter node can have Paragraph and Table nodes.
| 4 |
| Table |
A Table object that represents a table in a Word document.
A Table node can have Row nodes.
| 5 |
| Row |
A row of a table.
A Row node can have Cell nodes.
| 6 |
| Cell |
A cell of a table row.
A Cell node can have Paragraph and Table nodes.
| 7 |
| Paragraph |
A paragraph of text.
A Paragraph node is a container for inline level elements Run, FieldStart, FieldSeparator, FieldEnd, FormField, Shape, GroupShape, Footnote, Comment, |