BaseJustification

MathMatrix.BaseJustification property

Especifica la justificación vertical respecto al texto circundante. Los valores posibles son top, bottom y center. Predeterminado: Center

public MathVerticalAlignment BaseJustification { get; set; }

Ejemplos

Ejemplo:

[C#]
IMathMatrix matrix = new MathMatrix(2, 3);
matrix.BaseJustification = MathVerticalAlignment.Center;

Véase También