docx
    Preparing search index...

    Class MathRadical

    Represents a radical (root) expression in a math equation.

    MathRadical displays a radical symbol (√) with optional degree for n-th roots (cube root, fourth root, etc.).

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

    <xsd:complexType name="CT_Rad">
    <xsd:sequence>
    <xsd:element name="radPr" type="CT_RadPr" minOccurs="0"/>
    <xsd:element name="deg" type="CT_OMathArg"/>
    <xsd:element name="e" type="CT_OMathArg"/>
    </xsd:sequence>
    </xsd:complexType>
    // Square root of x
    new MathRadical({ children: [new MathRun("x")] });

    // Cube root of x
    new MathRadical({
    children: [new MathRun("x")],
    degree: [new MathRun("3")],
    });

    Hierarchy (View Summary)

    Index

    Constructors

    Methods