IMathLeftSubSuperscriptElement

IMathLeftSubSuperscriptElement interface

Especifica el objeto Sub-Superscript, que consiste en una base y un subíndice y superíndice colocados a la izquierda de la base.

public interface IMathLeftSubSuperscriptElement : IMathElement

Properties

NameDescription
AsIMathElement { get; }Permite obtener la interfaz base IMathElement IMathElement
Base { get; }Argumento base
Subscript { get; }Subíndice
Superscript { get; }Superíndice

Examples

Ejemplo:

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

See Also