BaseJustification

MathMatrix.BaseJustification property

Specifies the vertical justification respect to surrounding text. Possible values are top, bottom, and center. Default: Center

public MathVerticalAlignment BaseJustification { get; set; }

Examples

Example:

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

See Also