SetUpperLimit

SetUpperLimit(IMathElement)

Prend la limite supérieure

public IMathLimit SetUpperLimit(IMathElement limit)
ParamètreTaperLa description
limitIMathElementlimite

Return_Value

Nouvelle instance de typeIMathLimit

Exemples

Exemple :

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

Voir également


SetUpperLimit(string)

Prend la limite supérieure

public IMathLimit SetUpperLimit(string limit)
ParamètreTaperLa description
limitStringlimite

Return_Value

Nouvelle instance de typeIMathLimit

Exemples

Exemple :

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

Voir également