SetLowerLimit
SetLowerLimit(IMathElement)
Prend la limite inférieure
public IMathLimit SetLowerLimit(IMathElement limit)
Paramètre | Taper | La description |
---|---|---|
limit | IMathElement | limite |
Return_Value
Nouvelle instance de typeIMathLimit
Exemples
Exemple :
[C#]
IMathElement baseElement = new MathematicalText("lim");
IMathElement limitValue = new MathematicalText("𝑛→∞");
var limitElement = baseElement.SetLowerLimit(limitValue);
Voir également
- interface IMathLimit
- interface IMathElement
- espace de noms Aspose.Slides.MathText
- Assemblée Aspose.Slides
SetLowerLimit(string)
Prend la limite inférieure
public IMathLimit SetLowerLimit(string limit)
Paramètre | Taper | La description |
---|---|---|
limit | String | limite |
Return_Value
Nouvelle instance de typeIMathLimit
Exemples
Exemple :
[C#]
IMathElement baseElement = new MathematicalText("lim");
var limitElement = baseElement.SetLowerLimit("𝑛→∞");
Voir également
- interface IMathLimit
- interface IMathElement
- espace de noms Aspose.Slides.MathText
- Assemblée Aspose.Slides