docx
    Preparing search index...

    Class PageReference

    Represents a page reference (PAGEREF) field.

    The PAGEREF field displays the page number of the page containing the specified bookmark, useful for cross-references like "see page 5".

    // Simple page reference
    new PageReference("figure_1_bookmark");

    // With hyperlink
    new PageReference("table_2", { hyperlink: true });

    // With relative position (e.g., "above" or "on page 5")
    new PageReference("section_3", {
    hyperlink: true,
    useRelativePosition: true,
    });

    Hierarchy (View Summary)

    • Run
      • PageReference
    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);
      }