docx
    Preparing search index...

    Class MathFunction

    Represents a mathematical function in a math equation.

    MathFunction displays a function name followed by its argument, such as sin(x), cos(θ), or log(n).

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

    <xsd:complexType name="CT_Func">
    <xsd:sequence>
    <xsd:element name="funcPr" type="CT_FuncPr" minOccurs="0"/>
    <xsd:element name="fName" type="CT_OMathArg"/>
    <xsd:element name="e" type="CT_OMathArg"/>
    </xsd:sequence>
    </xsd:complexType>
    // sin(x)
    new MathFunction({
    name: [new MathRun("sin")],
    children: [new MathRun("x")],
    });

    Hierarchy (View Summary)

    Index

    Constructors

    Methods