BaseJustification

MathMatrix.BaseJustification property

Especifica la justificación vertical respecto al texto circundante. Los valores posibles son superior, inferior y central. Valor predeterminado: Centro

public MathVerticalAlignment BaseJustification { get; set; }

Ejemplos

Ejemplo:

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

Ver también