docx
    Preparing search index...

    Class MathDegreeInternal

    Represents the degree of a radical (root) in a math equation.

    MathDegree specifies the degree of the root, such as 3 for cube root. For square roots, this element is typically hidden.

    Reference: http://www.datypic.com/sc/ooxml/e-m_deg-1.html

    <xsd:complexType name="CT_OMathArg">
    <xsd:sequence>
    <xsd:element name="argPr" type="CT_OMathArgPr" minOccurs="0"/>
    <xsd:group ref="EG_OMathMathElements" minOccurs="0" maxOccurs="unbounded"/>
    <xsd:element name="ctrlPr" type="CT_CtrlPr" minOccurs="0"/>
    </xsd:sequence>
    </xsd:complexType>

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