IMathSubscriptElement

IMathSubscriptElement interface

Specifies the subscript object, which consists of a base and a reduced-size subscript placed below and to the right.

public interface IMathSubscriptElement : IMathElement

Properties

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

Examples

Example:

[C#]
IMathSubscriptElement subscriptElement = new MathematicalText("N").SetSubscript("i");

See Also