docx
    Preparing search index...

    Class Styles

    Represents the styles definitions in a WordprocessingML document.

    The styles element contains document defaults, latent styles, and individual style definitions for paragraphs and characters. Styles provide a way to define consistent formatting across a document.

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

    <xsd:complexType name="CT_Styles">
    <xsd:sequence>
    <xsd:element name="docDefaults" type="CT_DocDefaults" minOccurs="0"/>
    <xsd:element name="latentStyles" type="CT_LatentStyles" minOccurs="0" maxOccurs="1"/>
    <xsd:element name="style" type="CT_Style" minOccurs="0" maxOccurs="unbounded"/>
    </xsd:sequence>
    </xsd:complexType>
    // Create styles with custom paragraph and character styles
    new Styles({
    paragraphStyles: [{
    id: "CustomHeading",
    name: "Custom Heading",
    basedOn: "Normal",
    run: { bold: true, size: 28 }
    }],
    characterStyles: [{
    id: "Highlight",
    name: "Highlight",
    run: { color: "FF0000" }
    }]
    });

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