SetUpperLimit

SetUpperLimit(IMathElement)

Prend la 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 la 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