ToBorderBox()
Contents
[
Hide
]IMathElement::ToBorderBox() method
Places this element in a border-box
virtual System::SharedPtr<IMathBorderBox> Aspose::Slides::MathText::IMathElement::ToBorderBox()=0
Return Value
Border-box with this element placed inside
Remarks
Example:
auto borderBox = System::MakeObject<MathematicalText>(u"x+y+z")->ToBorderBox();
IMathElement::ToBorderBox(bool, bool, bool, bool, bool, bool, bool, bool) method
Places this element in a border-box
virtual System::SharedPtr<IMathBorderBox> Aspose::Slides::MathText::IMathElement::ToBorderBox(bool hideTop, bool hideBottom, bool hideLeft, bool hideRight, bool strikethroughHorizontal, bool strikethroughVertical, bool strikethroughBottomLeftToTopRight, bool strikethroughTopLeftToBottomRight)=0
Arguments
| Parameter | Type | Description | 
|---|---|---|
| hideTop | bool | Hide Top Edge | 
| hideBottom | bool | Hide Bottom Edge | 
| hideLeft | bool | Hide Left Edge | 
| hideRight | bool | Hide Right Edge | 
| strikethroughHorizontal | bool | Border Box Strikethrough Horizontal | 
| strikethroughVertical | bool | Border Box Strikethrough Vertical | 
| strikethroughBottomLeftToTopRight | bool | Border Box Strikethrough Bottom-Left to Top-Right | 
| strikethroughTopLeftToBottomRight | bool | Border Box Strikethrough Top-Left to Bottom-Right | 
Return Value
Border-box with this element placed inside
Remarks
Example:
auto borderBox = System::MakeObject<MathematicalText>(u"x+y+z")->ToBorderBox(false, false, true, true, false, false, false, false);
See Also
- Typedef SharedPtr
- Class IMathBorderBox
- Class IMathElement
- Namespace Aspose::Slides::MathText
- Library Aspose.Slides