MathElementBaseToBorderBox Method (Boolean, Boolean, Boolean, Boolean, Boolean, Boolean, Boolean, Boolean) |
Places this element in a border-box
Namespace:
Aspose.Slides.MathText
Assembly:
Aspose.Slides (in Aspose.Slides.dll) Version: 20.12.0.0 (20.12)
Syntaxpublic IMathBorderBox ToBorderBox(
bool hideTop,
bool hideBottom,
bool hideLeft,
bool hideRight,
bool strikethroughHorizontal,
bool strikethroughVertical,
bool strikethroughBottomLeftToTopRight,
bool strikethroughTopLeftToBottomRight
)
Public Function ToBorderBox (
hideTop As Boolean,
hideBottom As Boolean,
hideLeft As Boolean,
hideRight As Boolean,
strikethroughHorizontal As Boolean,
strikethroughVertical As Boolean,
strikethroughBottomLeftToTopRight As Boolean,
strikethroughTopLeftToBottomRight As Boolean
) As IMathBorderBox
public:
virtual IMathBorderBox^ ToBorderBox(
bool hideTop,
bool hideBottom,
bool hideLeft,
bool hideRight,
bool strikethroughHorizontal,
bool strikethroughVertical,
bool strikethroughBottomLeftToTopRight,
bool strikethroughTopLeftToBottomRight
) sealed
abstract ToBorderBox :
hideTop : bool *
hideBottom : bool *
hideLeft : bool *
hideRight : bool *
strikethroughHorizontal : bool *
strikethroughVertical : bool *
strikethroughBottomLeftToTopRight : bool *
strikethroughTopLeftToBottomRight : bool -> IMathBorderBox
override ToBorderBox :
hideTop : bool *
hideBottom : bool *
hideLeft : bool *
hideRight : bool *
strikethroughHorizontal : bool *
strikethroughVertical : bool *
strikethroughBottomLeftToTopRight : bool *
strikethroughTopLeftToBottomRight : bool -> IMathBorderBox
Parameters
- hideTop
- Type: SystemBoolean
Hide Top Edge - hideBottom
- Type: SystemBoolean
Hide Bottom Edge - hideLeft
- Type: SystemBoolean
Hide Left Edge - hideRight
- Type: SystemBoolean
Hide Right Edge - strikethroughHorizontal
- Type: SystemBoolean
Border Box Strikethrough Horizontal - strikethroughVertical
- Type: SystemBoolean
Border Box Strikethrough Vertical - strikethroughBottomLeftToTopRight
- Type: SystemBoolean
Border Box Strikethrough Bottom-Left to Top-Right - strikethroughTopLeftToBottomRight
- Type: SystemBoolean
Border Box Strikethrough Top-Left to Bottom-Right
Return Value
Type:
IMathBorderBoxBorder-box with this element placed inside
Implements
IMathElementToBorderBox(Boolean, Boolean, Boolean, Boolean, Boolean, Boolean, Boolean, Boolean)
ExamplesExample:
[C#]
IMathBorderBox borderBox = new MathematicalText("x+y+z").ToBorderBox(false, false, true, true, false, false, false, false);
See Also