ExplicitBreak

IMathBox.ExplicitBreak property

Explicit break specifies whether there is a line break at the start of the Box object, such that the line wraps at the start of the box object. Specifies the number of the operator on the previous line of mathematical text which shall be used as the alignment point for the current line of mathematical text possible values: 1..255 Default: 0 (no explicit break)

public byte ExplicitBreak { get; set; }

Examples

Example:

[C#]
IMathBox box = new MathematicalText("==").ToBox();
box.ExplicitBreak = 1;

See Also