SetUpperLimit

SetUpperLimit(IMathElement)

Prend une limite supérieure

public IMathLimit SetUpperLimit(IMathElement limit)
ParamètreTypeDescription
limitIMathElementlimite

Valeur de retour

Nouvelle instance de type IMathLimit

Exemples

Exemple:

[C#]
IMathElement baseElement = new MathematicalText("y");
IMathElement limitValue = new MathematicalText("y−>1");
var limitElement = baseElement.SetUpperLimit(limitValue);

Voir aussi


SetUpperLimit(string)

Prend une limite supérieure

public IMathLimit SetUpperLimit(string limit)
ParamètreTypeDescription
limitStringlimite

Valeur de retour

Nouvelle instance de type IMathLimit

Exemples

Exemple:

[C#]
IMathElement baseElement = new MathematicalText("y");
var limitElement = baseElement.SetUpperLimit("y−>1");

Voir aussi