docx
    Preparing search index...

    Class MathIntegral

    Represents an integral (∫) expression in a math equation.

    MathIntegral displays the integral symbol with optional bounds.

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

    <xsd:complexType name="CT_Nary">
    <xsd:sequence>
    <xsd:element name="naryPr" type="CT_NaryPr" minOccurs="0"/>
    <xsd:element name="sub" type="CT_OMathArg"/>
    <xsd:element name="sup" type="CT_OMathArg"/>
    <xsd:element name="e" type="CT_OMathArg"/>
    </xsd:sequence>
    </xsd:complexType>
    // Definite integral from 0 to 1
    new MathIntegral({
    children: [new MathRun("f(x) dx")],
    subScript: [new MathRun("0")],
    superScript: [new MathRun("1")],
    });

    Hierarchy (View Summary)

    Index

    Constructors

    Methods