SetLowerLimit

SetLowerLimit(IMathElement)

Prend la limite inférieure

public IMathLimit SetLowerLimit(IMathElement limit)
ParamètreTypeDescription
limitIMathElementlimite

Valeur de retour

Nouvelle instance de type IMathLimit

Exemples

Exemple:

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

Voir aussi


SetLowerLimit(string)

Prend la limite inférieure

public IMathLimit SetLowerLimit(string limit)
ParamètreTypeDescription
limitStringlimite

Valeur de retour

Nouvelle instance de type IMathLimit

Exemples

Exemple:

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

Voir aussi