docx
    Preparing search index...

    Class LevelBase

    Base class for numbering level definitions.

    Defines the formatting and behavior of a single level in a multi-level numbering scheme. Each level can have its own numbering format, text template, alignment, and styling.

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

    <xsd:complexType name="CT_Lvl">
    <xsd:sequence>
    <xsd:element name="start" type="CT_DecimalNumber" minOccurs="0"/>
    <xsd:element name="numFmt" type="CT_NumFmt" minOccurs="0"/>
    <xsd:element name="lvlRestart" type="CT_DecimalNumber" minOccurs="0"/>
    <xsd:element name="pStyle" type="CT_String" minOccurs="0"/>
    <xsd:element name="isLgl" type="CT_OnOff" minOccurs="0"/>
    <xsd:element name="suff" type="CT_LevelSuffix" minOccurs="0"/>
    <xsd:element name="lvlText" type="CT_LevelText" minOccurs="0"/>
    <xsd:element name="lvlPicBulletId" type="CT_DecimalNumber" minOccurs="0"/>
    <xsd:element name="legacy" type="CT_LvlLegacy" minOccurs="0"/>
    <xsd:element name="lvlJc" type="CT_Jc" minOccurs="0"/>
    <xsd:element name="pPr" type="CT_PPrGeneral" minOccurs="0"/>
    <xsd:element name="rPr" type="CT_RPr" minOccurs="0"/>
    </xsd:sequence>
    <xsd:attribute name="ilvl" type="ST_DecimalNumber" use="required"/>
    <xsd:attribute name="tplc" type="ST_LongHexNumber" use="optional"/>
    <xsd:attribute name="tentative" type="s:ST_OnOff" use="optional"/>
    </xsd:complexType>

    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);
      }