AlignScripts

MathRightSubSuperscriptElement.AlignScripts property

Especifica la alineación de subíndice/superíndice. Cuando es verdadero, el subíndice y el superíndice se alinean horizontalmente entre sí. Cuando es falso, se ajustan a la forma de la base. El valor predeterminado es falso.

public bool AlignScripts { get; set; }

Ejemplos

Ejemplo:

[C#]
IMathElement baseElement = new MathematicalText("X");
IMathElement subscript = new MathematicalText("i");
IMathElement superscript = new MathematicalText("j");
MathRightSubSuperscriptElement subsuperscript = new MathRightSubSuperscriptElement(baseElement, subscript, superscript);
subsuperscript.AlignScripts = true;

Ver también