Base

IMathNaryOperator.Base property

Base argument

public IMathElement Base { get; }

Examples

Example:

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

See Also