docx
    Preparing search index...

    Class SequentialIdentifier

    Represents a run of text with uniform formatting in a WordprocessingML document.

    A run is the lowest level unit of text in a paragraph. All content within a run shares the same formatting properties (bold, italic, font, size, etc.).

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

    <xsd:complexType name="CT_R">
    <xsd:sequence>
    <xsd:group ref="EG_RPr" minOccurs="0"/>
    <xsd:group ref="EG_RunInnerContent" minOccurs="0" maxOccurs="unbounded"/>
    </xsd:sequence>
    <xsd:attribute name="rsidRPr" type="ST_LongHexNumber"/>
    <xsd:attribute name="rsidDel" type="ST_LongHexNumber"/>
    <xsd:attribute name="rsidR" type="ST_LongHexNumber"/>
    </xsd:complexType>
    // Simple run with text
    new Run({ text: "Hello World" });

    // Bold and italic run
    new Run({ text: "Formatted", bold: true, italics: true });

    // Run with page number
    new Run({ children: [PageNumber.CURRENT] });

    Hierarchy (View Summary)

    • Run
      • SequentialIdentifier
    Index

    Constructors

    Methods