docx
    Preparing search index...

    Class InternalHyperlink

    Represents an internal hyperlink to a bookmark within the document.

    Internal hyperlinks use the anchor attribute to reference a bookmark by name. The bookmark must exist in the document for the hyperlink to function.

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

    <xsd:element name="hyperlink" type="CT_Hyperlink"/>

    <xsd:complexType name="CT_Hyperlink">
    <xsd:group ref="EG_PContent" minOccurs="0" maxOccurs="unbounded"/>
    <xsd:attribute name="anchor" type="s:ST_String" use="optional"/>
    <xsd:attribute name="history" type="s:ST_OnOff" use="optional"/>
    </xsd:complexType>
    // Create a bookmark
    new Bookmark({
    id: "section1",
    children: [new TextRun("Section 1")],
    });

    // Link to the bookmark
    new InternalHyperlink({
    children: [new TextRun({ text: "Go to Section 1", style: "Hyperlink" })],
    anchor: "section1",
    });

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    Methods

    Constructors

    Properties

    linkId: string

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