IMathSuperscriptElement

IMathSuperscriptElement interface

Specifies the superscript object, which consists of a base and a reduced-size superscript placed above and to the right

public interface IMathSuperscriptElement : IMathElement

Properties

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

Examples

Example:

[C#]
IMathSuperscriptElement superscriptElement = new MathematicalText("N").SetSuperscript("i");

See Also