IMathNaryOperator

IMathNaryOperator interface

Especifica un objeto matemático N-ario, como la Suma y la Integral. Consiste en un operador, una base (o operando), y límites superior e inferior opcionales. Ejemplos de operadores N-arios son: Suma, Unión, Intersección, Integral

public interface IMathNaryOperator : IMathElement, IMathNaryOperatorProperties

Properties

NombreDescripción
AsIMathElement { get; }Permite obtener la interfaz base IMathElement IMathElement
AsIMathNaryOperatorProperties { get; }Permite obtener la interfaz base IMathNaryOperatorProperties IMathNaryOperatorProperties
Base { get; }Argumento base
Subscript { get; }Especifica un argumento de subíndice que, por ejemplo, en el caso de una integral, establece el límite inferior
Superscript { get; }Especifica un argumento de superíndice que, por ejemplo, en el caso de una integral, establece el límite superior

Ejemplos

Ejemplo:

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

Ver También