SetLowerLimit

SetLowerLimit(IMathElement)

Takes lower limit

public IMathLimit SetLowerLimit(IMathElement limit)
ParameterTypeDescription
limitIMathElementlimit

Return Value

New instance of type IMathLimit

Examples

Example:

[C#]
IMathElement baseElement = new MathematicalText("lim");
IMathElement limitValue = new MathematicalText("𝑛→∞");
var limitElement = baseElement.SetLowerLimit(limitValue);

See Also


SetLowerLimit(string)

Takes lower limit

public IMathLimit SetLowerLimit(string limit)
ParameterTypeDescription
limitStringlimit

Return Value

New instance of type IMathLimit

Examples

Example:

[C#]
IMathElement baseElement = new MathematicalText("lim");
var limitElement = baseElement.SetLowerLimit("𝑛→∞");

See Also