SetLowerLimit
SetLowerLimit(IMathElement)
Takes lower limit
public IMathLimit SetLowerLimit(IMathElement limit)
Parameter | Type | Description |
---|---|---|
limit | IMathElement | limit |
Return Value
New instance of type IMathLimit
Examples
Example:
[C#]
IMathElement baseElement = new MathematicalText("lim");
IMathElement limitValue = new MathematicalText("𝑛→∞");
var limitElement = baseElement.SetLowerLimit(limitValue);
See Also
- interface IMathLimit
- interface IMathElement
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides
SetLowerLimit(string)
Takes lower limit
public IMathLimit SetLowerLimit(string limit)
Parameter | Type | Description |
---|---|---|
limit | String | limit |
Return Value
New instance of type IMathLimit
Examples
Example:
[C#]
IMathElement baseElement = new MathematicalText("lim");
var limitElement = baseElement.SetLowerLimit("𝑛→∞");
See Also
- interface IMathLimit
- interface IMathElement
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides