SetSubSuperscriptOnTheLeft

SetSubSuperscriptOnTheLeft(IMathElement, IMathElement)

Creates subscript and superscript on the left

public IMathLeftSubSuperscriptElement SetSubSuperscriptOnTheLeft(IMathElement subscript, 
    IMathElement superscript)
ParameterTypeDescription
subscriptIMathElementSubscript (lower index on the left)
superscriptIMathElementSuperscript (upper index on the left)

Return Value

New math element of type IMathLeftSubSuperscriptElement

Examples

Example:

[C#]
IMathElement baseElement = new MathematicalText("N");
IMathElement subscript = new MathematicalText("i");
IMathElement superscript = new MathematicalText("j");
IMathLeftSubSuperscriptElement leftSubsuperscript = baseElement.SetSubSuperscriptOnTheLeft(subscript, superscript);

See Also


SetSubSuperscriptOnTheLeft(string, string)

Creates subscript and superscript on the left

public IMathLeftSubSuperscriptElement SetSubSuperscriptOnTheLeft(string subscript, 
    string superscript)
ParameterTypeDescription
subscriptStringSubscript (lower index on the left)
superscriptStringSuperscript (upper index on the left)

Return Value

New math element of type IMathLeftSubSuperscriptElement

Examples

Example:

[C#]
IMathElement baseElement = new MathematicalText("N");
IMathLeftSubSuperscriptElement leftSubsuperscript = baseElement.SetSubSuperscriptOnTheLeft("i", "j");

See Also