MathLimit

MathLimit(IMathElement, IMathElement, bool)

Initializes a new instance of the MathLimit class.

public MathLimit(IMathElement baseArg, IMathElement limit, bool upperLimit)

Examples

Example:

[C#]
MathLimit limitElement = new MathLimit(new MathematicalText("lim"), new MathematicalText("𝑛→∞"), false);

See Also


MathLimit(IMathElement, IMathElement)

Initializes a new instance of the MathLimit class with lower limit

public MathLimit(IMathElement baseArg, IMathElement limit)

Examples

Example:

[C#]
MathLimit limitElement = new MathLimit(new MathematicalText("lim"), new MathematicalText("𝑛→∞"));

See Also