docx
    Preparing search index...

    Class MathSuperScript

    Represents a superscript expression in a math equation.

    MathSuperScript displays a base with an exponent, like x².

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

    <xsd:complexType name="CT_SSup">
    <xsd:sequence>
    <xsd:element name="sSupPr" type="CT_SSupPr" minOccurs="0"/>
    <xsd:element name="e" type="CT_OMathArg"/>
    <xsd:element name="sup" type="CT_OMathArg"/>
    </xsd:sequence>
    </xsd:complexType>
    // x squared
    new MathSuperScript({
    children: [new MathRun("x")],
    superScript: [new MathRun("2")],
    });

    Hierarchy (View Summary)

    Index

    Constructors

    Methods