Logical Levels of Nodes in a Document

This documentation sometimes refers to a group of node classes as belonging to a “level” in a document, such as “block-level”, “inline-level” (also known as “inline”), or “row-level” nodes. These levels in a document are differentiated purely logically and are not explicitly expressed by inheritance or other Aspose.Words DOM means. The node level is used to describe the place in the document tree where the node would typically occur.

In the previous article, we already talked about the relationship between nodes and the fact that not all nodes are allowed to be a child of any nodes. For example, Cell can only be a Row child, and a Row can only be a Table child, and so on. These relationships are also applicable for logical division of nodes into levels in the document.

The following sections describe the logical levels of nodes in Aspose.Words and the classes that belong to each level.

Document and Section Logical Level

A Word document consists of one or more sections, represented by the Section class and separated by section breaks. A section can define its own page size, margins, orientation, number of text columns, and headers and footers.

Document and Section level nodes have the structure as shown in the following diagram.

document-and-section-level-aspose-words

A section contains the main text, as well as headers and footers for the first, even, and odd pages. These different “flows” of text are called stories.

In Aspose.Words, the Section node contains the Body and HeaderFooter story nodes. The Body object stores the main text. The HeaderFooter objects store the text for each header and footer. The text of any story consists of paragraphs and tables, respectively represented by the Paragraph and Table objects of the Block-level.

Additionally, each Word document can contain a glossary, which is represented by the GlossaryDocument node in Aspose.Words. A glossary document contains building_blocks BuildingBlockType.AUTO_TEXT, and BuildingBlockType.AUTO_CORRECT entries.

GlossaryDocument includes BuildingBlock nodes representing different types of glossary document entries. Each BuildingBlock contains sections that can be inserted, removed, and copied into documents.

Block Logical Level

Block-level nodes represent containers for content and content controls, and can occur in the document tree child nodes in the following nodes:

Block-level nodes are represented by the following classes:

  • Tables and Paragraphs, which are the most important block-level nodes
  • Bookmarks, which occurs both at the block-level and at the inline-level
  • StructuredDocumentTag, which represent custom markup and can contain both content and content controls

The following diagram shows block-level elements.

block-level-aspose-words

Inline Logical Level

Inline-level nodes represent the actual content of the document and can be contained in the following containers:

Inline-level elements are represented by the following classes:

The following diagram shows the inline-level nodes structure.

inline-level-aspose-words

Table, Row, and Cell Node Level

The table consists of nodes of rows and cells. Table elements are represented by the following classes:

The following diagram shows the node structures of the Table, Row, and Cell levels.

table-row-cell-aspose-words