MathLimit

MathLimit(IMathElement, IMathElement, bool)

Initialisiert eine neue Instanz der MathLimit-Klasse.

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

Beispiele

Beispiel:

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

Siehe auch


MathLimit(IMathElement, IMathElement)

Initialisiert eine neue Instanz der MathLimit-Klasse mit Untergrenze

public MathLimit(IMathElement baseArg, IMathElement limit)

Beispiele

Beispiel:

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

Siehe auch