SetUpperLimit
SetUpperLimit(IMathElement)
Takes upper limit
public IMathLimit SetUpperLimit(IMathElement limit)
Parameter | Type | Description |
---|---|---|
limit | IMathElement | limit |
Return Value
New instance of type IMathLimit
Examples
Example:
[C#]
IMathElement baseElement = new MathematicalText("y");
IMathElement limitValue = new MathematicalText("y−>1");
var limitElement = baseElement.SetUpperLimit(limitValue);
See Also
- interface IMathLimit
- interface IMathElement
- class MathElementBase
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides
SetUpperLimit(string)
Takes upper limit
public IMathLimit SetUpperLimit(string limit)
Parameter | Type | Description |
---|---|---|
limit | String | limit |
Return Value
New instance of type IMathLimit
Examples
Example:
[C#]
IMathElement baseElement = new MathematicalText("y");
var limitElement = baseElement.SetUpperLimit("y−>1");
See Also
- interface IMathLimit
- class MathElementBase
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides