Operator

MathNaryOperator.Operator property

Caracter del operador Nario Por ejemplo: ‘∑’, ‘∫’

public char Operator { get; set; }

Examples

Ejemplo:

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

See Also