IMathNaryOperator

IMathNaryOperator interface

Especifica un objeto matemático N-ario, como sumatoria e integral. Consta de un operador, una base (u 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

Propiedades

NombreDescripción
AsIMathElement { get; }Permite obtener la interfaz base IMathElement IMathElement
AsIMathNaryOperatorProperties { get; }Permite obtener la base IMathNaryOperatorProperties interface 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 superscript 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