AlignScripts

IMathRightSubSuperscriptElement.AlignScripts property

Especifica la alineación de subíndices/superíndices. Cuando es verdadero, los subíndices y superíndices están alineados horizontalmente entre sí. Cuando es falso, están ajustados 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;

Vea también