SetUpperLimit

SetUpperLimit(IMathElement)

Takes upper limit

public IMathLimit SetUpperLimit(IMathElement limit)
ParameterTypeDescription
limitIMathElementlimit

Return Value

New instance of type IMathLimit

Examples

Example:

[C#]
IMathElement baseElement = new MathematicalText("y");
IMathElement limitValue = new MathematicalText("y−>1");
var limitElement = baseElement.SetUpperLimit(limitValue);

See Also


SetUpperLimit(string)

Takes upper limit

public IMathLimit SetUpperLimit(string limit)
ParameterTypeDescription
limitStringlimit

Return Value

New instance of type IMathLimit

Examples

Example:

[C#]
IMathElement baseElement = new MathematicalText("y");
var limitElement = baseElement.SetUpperLimit("y−>1");

See Also