MathNaryOperator

MathNaryOperator(char, IMathElement, IMathElement, IMathElement)

Inicializa una nueva instancia de la clase MathNaryOperator.

public MathNaryOperator(char operatorSymbol, IMathElement baseArgument, IMathElement lowerLimit, 
    IMathElement upperLimit)
ParámetroEscribeDescripción
operatorSymbolCharSímbolo de operador Nary
baseArgumentIMathElementArgumento base
lowerLimitIMathElementLímite inferior
upperLimitIMathElementLimite superior

Ejemplos

Ejemplo:

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

Ver también


MathNaryOperator(char, IMathElement, IMathElement)

Inicializa una nueva instancia de la clase MathNaryOperator.

public MathNaryOperator(char operatorSymbol, IMathElement baseArgument, IMathElement lowerLimit)
ParámetroEscribeDescripción
operatorSymbolCharSímbolo de operador Nary
baseArgumentIMathElementArgumento base
lowerLimitIMathElementLímite inferior

Ejemplos

Ejemplo:

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

Ver también


MathNaryOperator(char, IMathElement)

Inicializa una nueva instancia de la clase MathNaryOperator.

public MathNaryOperator(char operatorSymbol, IMathElement baseArgument)
ParámetroEscribeDescripción
operatorSymbolCharSímbolo de operador Nary
baseArgumentIMathElementArgumento base

Ejemplos

Ejemplo:

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

Ver también