GrowToMatchOperandHeight

IMathNaryOperatorProperties.GrowToMatchOperandHeight property

Operator Character grows vertically to match its operand height

public bool GrowToMatchOperandHeight { get; set; }

Examples

Example:

[C#]
IMathNaryOperator naryOperator = new MathematicalText("x").Nary(MathNaryOperatorTypes.Summation, "x=1", "100");
naryOperator.GrowToMatchOperandHeight = true;

See Also