SetUpperLimit
SetUpperLimit(IMathElement)
Prend une limite supérieure
public IMathLimit SetUpperLimit(IMathElement limit)
Paramètre | Type | Description |
---|---|---|
limit | IMathElement | limite |
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
- interface IMathLimit
- interface IMathElement
- class MathElementBase
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides
SetUpperLimit(string)
Prend une limite supérieure
public IMathLimit SetUpperLimit(string limit)
Paramètre | Type | Description |
---|---|---|
limit | String | limite |
Valeur de retour
Nouvelle instance de type IMathLimit
Exemples
Exemple:
[C#]
IMathElement baseElement = new MathematicalText("y");
var limitElement = baseElement.SetUpperLimit("y−>1");
Voir aussi
- interface IMathLimit
- class MathElementBase
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides