MathNaryOperator

MathNaryOperator(char, IMathElement, IMathElement, IMathElement)

Initializes a new instance of the MathNaryOperator class.

public MathNaryOperator(char operatorSymbol, IMathElement baseArgument, IMathElement lowerLimit, 
    IMathElement upperLimit)
ParameterTypeDescription
operatorSymbolCharNary operator symbol
baseArgumentIMathElementBase argument
lowerLimitIMathElementLower limit
upperLimitIMathElementUpper limit

Examples

Example:

[C#]
IMathNaryOperator naryOperator = new MathNaryOperator('∑', new MathematicalText("i"), new MathematicalText("i=0"), new MathematicalText("𝑛"));

See Also


MathNaryOperator(char, IMathElement, IMathElement)

Initializes a new instance of the MathNaryOperator class.

public MathNaryOperator(char operatorSymbol, IMathElement baseArgument, IMathElement lowerLimit)
ParameterTypeDescription
operatorSymbolCharNary operator symbol
baseArgumentIMathElementBase argument
lowerLimitIMathElementLower limit

Examples

Example:

[C#]
IMathNaryOperator naryOperator = new MathNaryOperator('∑', new MathematicalText("i"), new MathematicalText("i"));

See Also


MathNaryOperator(char, IMathElement)

Initializes a new instance of the MathNaryOperator class.

public MathNaryOperator(char operatorSymbol, IMathElement baseArgument)
ParameterTypeDescription
operatorSymbolCharNary operator symbol
baseArgumentIMathElementBase argument

Examples

Example:

[C#]
IMathNaryOperator naryOperator = new MathNaryOperator('∑', new MathematicalText("i"));

See Also