IMathLimit
All Implemented Interfaces: com.aspose.slides.IMathElement
public interface IMathLimit extends IMathElement
Specifies the Limit object, consisting of text on the baseline and reduced-size text immediately above or below it.
Example: IMathLimit limitElement = new MathLimit(new MathematicalText("lim"), new MathematicalText("ð?\u2018\u203aâ\u2020\u2019â\u02c6\u017e"));
Methods
Method | Description |
---|---|
getBase() | Base argument |
getLimit() | Limit argument |
getUpperLimit() | Specifies upper or lower limit |
setUpperLimit(boolean value) | Specifies upper or lower limit |
getBase()
public abstract IMathElement getBase()
Base argument
Example: IMathLimit limitElement = new MathLimit(new MathematicalText("lim"), new MathematicalText("ð?\u2018\u203aâ\u2020\u2019â\u02c6\u017e")); IMathElement baseArg = limitElement.getBase();
Returns: IMathElement
getLimit()
public abstract IMathElement getLimit()
Limit argument
Example: IMathLimit limitElement = new MathLimit(new MathematicalText("lim"), new MathematicalText("ð?\u2018\u203aâ\u2020\u2019â\u02c6\u017e")); IMathElement limitArg = limitElement.getLimit();
Returns: IMathElement
getUpperLimit()
public abstract boolean getUpperLimit()
Specifies upper or lower limit
Example: IMathLimit limitElement = new MathLimit(new MathematicalText("lim"), new MathematicalText("ð?\u2018\u203aâ\u2020\u2019â\u02c6\u017e")); limitElement.setUpperLimit(false);
Returns: boolean
setUpperLimit(boolean value)
public abstract void setUpperLimit(boolean value)
Specifies upper or lower limit
Example: IMathLimit limitElement = new MathLimit(new MathematicalText("lim"), new MathematicalText("ð?\u2018\u203aâ\u2020\u2019â\u02c6\u017e")); limitElement.setUpperLimit(false);
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |