docx
    Preparing search index...

    Class NumberProperties

    Represents numbering properties for a paragraph.

    The numPr element specifies the numbering definition instance and level for the paragraph, enabling numbered and bulleted lists.

    Reference: http://officeopenxml.com/WPnumbering.php

    <xsd:complexType name="CT_NumPr">
    <xsd:sequence>
    <xsd:element name="ilvl" type="CT_DecimalNumber" minOccurs="0"/>
    <xsd:element name="numId" type="CT_DecimalNumber" minOccurs="0"/>
    <xsd:element name="numberingChange" type="CT_TrackChangeNumbering" minOccurs="0"/>
    <xsd:element name="ins" type="CT_TrackChange" minOccurs="0"/>
    </xsd:sequence>
    </xsd:complexType>
    // Create a bulleted list item at level 0
    new Paragraph({
    numbering: {
    reference: "my-bullet-list",
    level: 0,
    },
    children: [new TextRun("First item")],
    });

    // Create a numbered list item at level 1
    new Paragraph({
    numbering: {
    reference: "my-numbered-list",
    level: 1,
    },
    children: [new TextRun("Nested item")],
    });

    Hierarchy (View Summary)

    Index

    Constructors

    Methods

    • Prepares this component and its children for XML serialization.

      This method is called by the Formatter to convert the component tree into an object structure compatible with the xml library (https://www.npmjs.com/package/xml). It recursively processes all children and handles special cases like attribute-only elements and empty elements.

      The method can be overridden by subclasses to customize XML representation or execute side effects during serialization (e.g., creating relationships).

      Parameters

      • context: IContext

        The serialization context containing document state

      Returns IXmlableObject | undefined

      The XML-serializable object, or undefined to exclude from output

      // Override to add custom serialization logic
      prepForXml(context: IContext): IXmlableObject | undefined {
      // Custom logic here
      return super.prepForXml(context);
      }