MathLimit

MathLimit(IMathElement, IMathElement, bool)

Initialise une nouvelle instance de la classe MathLimit.

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

Exemples

Exemple:

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

Voir aussi


MathLimit(IMathElement, IMathElement)

Initialise une nouvelle instance de la classe MathLimit avec une limite inférieure

public MathLimit(IMathElement baseArg, IMathElement limit)

Exemples

Exemple:

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

Voir aussi