GrowToMatchOperandHeight

IMathDelimiter.GrowToMatchOperandHeight property

Specifies the growth of BeginningCharacter, SeparatorCharacter, EndingCharacter When true, the delimiters grows vertically to match its operand height. The default value is true

public bool GrowToMatchOperandHeight { get; set; }

Examples

Example:

[C#]
IMathDelimiter delimiter = new MathematicalText("x").Divide("y").Enclose();
delimiter.GrowToMatchOperandHeight = false;

See Also