w:ilvl (Numbering Level Reference)
Specifies the zero-based list level (0-8) within the numbering definition for this paragraph.
Parent elements
Description
w:ilvl specifies the zero-based list level index for a paragraph. It is defined in ECMA-376 Part 1 §17.3.1.10 (as a child of w:numPr) and §17.9.4 (as an attribute of w:lvl).
Level 0 is the outermost (top) level; level 8 is the deepest. The effective formatting applied comes from the w:lvl definition in the referenced w:abstractNum.
Attributes
| Attribute | Type | Possible Values | Description |
|---|---|---|---|
w:val |
ST_DecimalNumber |
0–8 |
Zero-based list level index. |
Examples
<!-- Second level (sub-list) -->
<w:numPr>
<w:ilvl w:val="1"/>
<w:numId w:val="1"/>
</w:numPr>
new NumberingProperties(
new NumberingLevelReference { Val = 1 },
new NumberingId { Val = 1 });