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