IMathBorderBox
All Implemented Interfaces: com.aspose.slides.IMathElement
public interface IMathBorderBox extends IMathElement
Draws a rectangular or some other border around the IMathElement.
Example: IMathBorderBox borderBox = new MathematicalText("x+y+z").toBorderBox();
Methods
Method | Description |
---|---|
getBase() | Base argument |
getHideTop() | Hide Top Edge (default is false) - specifies the hidden or shown state of the top edge of border box. |
setHideTop(boolean value) | Hide Top Edge (default is false) - specifies the hidden or shown state of the top edge of border box. |
getHideBottom() | Hide Bottom Edge (default is false) - specifies the hidden or shown state of the bottom edge of border box. |
setHideBottom(boolean value) | Hide Bottom Edge (default is false) - specifies the hidden or shown state of the bottom edge of border box. |
getHideLeft() | Hide Left Edge (default is false) - specifies the hidden or shown state of the left edge of border box. |
setHideLeft(boolean value) | Hide Left Edge (default is false) - specifies the hidden or shown state of the left edge of border box. |
getHideRight() | Hide Right Edge (default is false) - specifies the hidden or shown state of the right edge of border box. |
setHideRight(boolean value) | Hide Right Edge (default is false) - specifies the hidden or shown state of the right edge of border box. |
getStrikethroughHorizontal() | Strikethrough Horizontal (default is false) - specifies the hidden or shown state of a strikethrough horizontal line. |
setStrikethroughHorizontal(boolean value) | Strikethrough Horizontal (default is false) - specifies the hidden or shown state of a strikethrough horizontal line. |
getStrikethroughVertical() | Strikethrough Vertical (default is false) - specifies the hidden or shown state of a strikethrough vertical line. |
setStrikethroughVertical(boolean value) | Strikethrough Vertical (default is false) - specifies the hidden or shown state of a strikethrough vertical line. |
getStrikethroughBottomLeftToTopRight() | Strikethrough Bottom-Left to Top-Right (default is false). |
setStrikethroughBottomLeftToTopRight(boolean value) | Strikethrough Bottom-Left to Top-Right (default is false). |
getStrikethroughTopLeftToBottomRight() | Strikethrough Top-Left to Bottom-Right (default is false). |
setStrikethroughTopLeftToBottomRight(boolean value) | Strikethrough Top-Left to Bottom-Right (default is false). |
getBase()
public abstract IMathElement getBase()
Base argument
Example: IMathBorderBox borderBox = new MathematicalText("x+y+z").toBorderBox(); IMathElement base = borderBox.getBase();
Returns: IMathElement
getHideTop()
public abstract boolean getHideTop()
Hide Top Edge (default is false) - specifies the hidden or shown state of the top edge of border box.
Example: IMathBorderBox borderBox = new MathematicalText("x+y+z").toBorderBox(); borderBox.setHideTop(true);
Returns: boolean
setHideTop(boolean value)
public abstract void setHideTop(boolean value)
Hide Top Edge (default is false) - specifies the hidden or shown state of the top edge of border box.
Example: IMathBorderBox borderBox = new MathematicalText("x+y+z").toBorderBox(); borderBox.setHideTop(true);
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |
getHideBottom()
public abstract boolean getHideBottom()
Hide Bottom Edge (default is false) - specifies the hidden or shown state of the bottom edge of border box.
Example: IMathBorderBox borderBox = new MathematicalText("x+y+z").toBorderBox(); borderBox.setHideBottom(true);
Returns: boolean
setHideBottom(boolean value)
public abstract void setHideBottom(boolean value)
Hide Bottom Edge (default is false) - specifies the hidden or shown state of the bottom edge of border box.
Example: IMathBorderBox borderBox = new MathematicalText("x+y+z").toBorderBox(); borderBox.setHideBottom(true);
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |
getHideLeft()
public abstract boolean getHideLeft()
Hide Left Edge (default is false) - specifies the hidden or shown state of the left edge of border box.
Example: IMathBorderBox borderBox = new MathematicalText("x+y+z").toBorderBox(); borderBox.setHideLeft(true);
Returns: boolean
setHideLeft(boolean value)
public abstract void setHideLeft(boolean value)
Hide Left Edge (default is false) - specifies the hidden or shown state of the left edge of border box.
Example: IMathBorderBox borderBox = new MathematicalText("x+y+z").toBorderBox(); borderBox.setHideLeft(true);
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |
getHideRight()
public abstract boolean getHideRight()
Hide Right Edge (default is false) - specifies the hidden or shown state of the right edge of border box.
Example: IMathBorderBox borderBox = new MathematicalText("x+y+z").toBorderBox(); borderBox.setHideRight(true);
Returns: boolean
setHideRight(boolean value)
public abstract void setHideRight(boolean value)
Hide Right Edge (default is false) - specifies the hidden or shown state of the right edge of border box.
Example: IMathBorderBox borderBox = new MathematicalText("x+y+z").toBorderBox(); borderBox.setHideRight(true);
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |
getStrikethroughHorizontal()
public abstract boolean getStrikethroughHorizontal()
Strikethrough Horizontal (default is false) - specifies the hidden or shown state of a strikethrough horizontal line.
Example: IMathBorderBox borderBox = new MathematicalText("x+y+z").toBorderBox(); borderBox.setStrikethroughHorizontal(true);
Returns: boolean
setStrikethroughHorizontal(boolean value)
public abstract void setStrikethroughHorizontal(boolean value)
Strikethrough Horizontal (default is false) - specifies the hidden or shown state of a strikethrough horizontal line.
Example: IMathBorderBox borderBox = new MathematicalText("x+y+z").toBorderBox(); borderBox.setStrikethroughHorizontal(true);
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |
getStrikethroughVertical()
public abstract boolean getStrikethroughVertical()
Strikethrough Vertical (default is false) - specifies the hidden or shown state of a strikethrough vertical line.
Example: IMathBorderBox borderBox = new MathematicalText("x+y+z").toBorderBox(); borderBox.setStrikethroughVertical(true);
Returns: boolean
setStrikethroughVertical(boolean value)
public abstract void setStrikethroughVertical(boolean value)
Strikethrough Vertical (default is false) - specifies the hidden or shown state of a strikethrough vertical line.
Example: IMathBorderBox borderBox = new MathematicalText("x+y+z").toBorderBox(); borderBox.setStrikethroughVertical(true);
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |
getStrikethroughBottomLeftToTopRight()
public abstract boolean getStrikethroughBottomLeftToTopRight()
Strikethrough Bottom-Left to Top-Right (default is false). Specifies the hidden or shown state of a strikethrough diagonal line from the bottom-left corner to the top-right corner of border box.
Example: IMathBorderBox borderBox = new MathematicalText("x+y+z").toBorderBox(); borderBox.setStrikethroughBottomLeftToTopRight(true);
Returns: boolean
setStrikethroughBottomLeftToTopRight(boolean value)
public abstract void setStrikethroughBottomLeftToTopRight(boolean value)
Strikethrough Bottom-Left to Top-Right (default is false). Specifies the hidden or shown state of a strikethrough diagonal line from the bottom-left corner to the top-right corner of border box.
Example: IMathBorderBox borderBox = new MathematicalText("x+y+z").toBorderBox(); borderBox.setStrikethroughBottomLeftToTopRight(true);
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |
getStrikethroughTopLeftToBottomRight()
public abstract boolean getStrikethroughTopLeftToBottomRight()
Strikethrough Top-Left to Bottom-Right (default is false). Specifies the hidden or shown state of a strikethrough diagonal line from the top-left corner to the bottom-right corner of border box.
Example: IMathBorderBox borderBox = new MathematicalText("x+y+z").toBorderBox(); borderBox.setStrikethroughTopLeftToBottomRight(true);
Returns: boolean
setStrikethroughTopLeftToBottomRight(boolean value)
public abstract void setStrikethroughTopLeftToBottomRight(boolean value)
Strikethrough Top-Left to Bottom-Right (default is false). Specifies the hidden or shown state of a strikethrough diagonal line from the top-left corner to the bottom-right corner of border box.
Example: IMathBorderBox borderBox = new MathematicalText("x+y+z").toBorderBox(); borderBox.setStrikethroughTopLeftToBottomRight(true);
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |