Operator

MathNaryOperator.Operator property

Nary Operator Character For example: ‘∑’, ‘∫’

public char Operator { get; set; }

Examples

Example:

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

See Also