docx
    Preparing search index...

    Class VerticalMerge

    Represents a vertical merge (vMerge) element in a WordprocessingML document.

    The vMerge element specifies that this cell is part of a vertically merged region. Cells can either restart a new merge region or continue an existing one from above. This is used to create row spans in tables.

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

    <xsd:complexType name="CT_VMerge">
    <xsd:attribute name="val" type="ST_Merge"/>
    </xsd:complexType>
    // First cell in a vertical merge
    new VerticalMerge(VerticalMergeType.RESTART);

    // Subsequent cells that continue the merge
    new VerticalMerge(VerticalMergeType.CONTINUE);

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