LimitLocation

IMathNaryOperatorProperties.LimitLocation property

The location of limits (subscript and superscript)

public MathLimitLocations LimitLocation { get; set; }

Examples

Example:

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

See Also