BaseJustification

IMathArray.BaseJustification property

Specifies alignment of the array relative to surrounding text Text outside of the array can be aligned with the bottom, top, or center of a array object. Default value: Center

public MathVerticalAlignment BaseJustification { get; set; }

Examples

Example:

[C#]
IMathArray mathArray = new MathArray(new MathematicalText("item1"));
mathArray.BaseJustification = MathVerticalAlignment.Top;

See Also