IMathLeftSubSuperscriptElement

IMathLeftSubSuperscriptElement interface

Specifies the Sub-Superscript object, which consists of a base and a subscript and superscript placed to the left of the base.

public interface IMathLeftSubSuperscriptElement : IMathElement

Properties

NameDescription
AsIMathElement { get; }Allows to get base IMathElement interface IMathElement
Base { get; }Base argument
Subscript { get; }Subscript
Superscript { get; }Superscript

Examples

Example:

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

See Also