ToBorderBox
Contents
[
Hide
]ToBorderBox()
Places this element in a border-box
public IMathBorderBox ToBorderBox()
Return Value
Border-box with this element placed inside
Examples
Example:
[C#]
IMathBorderBox borderBox = new MathematicalText("x+y+z").ToBorderBox();
See Also
- interface IMathBorderBox
- interface IMathElement
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides
ToBorderBox(bool, bool, bool, bool, bool, bool, bool, bool)
Places this element in a border-box
public IMathBorderBox ToBorderBox(bool hideTop, bool hideBottom, bool hideLeft, bool hideRight,
bool strikethroughHorizontal, bool strikethroughVertical,
bool strikethroughBottomLeftToTopRight, bool strikethroughTopLeftToBottomRight)
Parameter | Type | Description |
---|---|---|
hideTop | Boolean | Hide Top Edge |
hideBottom | Boolean | Hide Bottom Edge |
hideLeft | Boolean | Hide Left Edge |
hideRight | Boolean | Hide Right Edge |
strikethroughHorizontal | Boolean | Border Box Strikethrough Horizontal |
strikethroughVertical | Boolean | Border Box Strikethrough Vertical |
strikethroughBottomLeftToTopRight | Boolean | Border Box Strikethrough Bottom-Left to Top-Right |
strikethroughTopLeftToBottomRight | Boolean | Border Box Strikethrough Top-Left to Bottom-Right |
Return Value
Border-box with this element placed inside
Examples
Example:
[C#]
IMathBorderBox borderBox = new MathematicalText("x+y+z").ToBorderBox(false, false, true, true, false, false, false, false);
See Also
- interface IMathBorderBox
- interface IMathElement
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides