ToBorderBox
内容
[
隐藏
]ToBorderBox()
将此元素放置在边框框内
public IMathBorderBox ToBorderBox()
Return Value
包含此元素的边框框
Examples
示例:
[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)
将此元素放置在边框框内
public IMathBorderBox ToBorderBox(bool hideTop, bool hideBottom, bool hideLeft, bool hideRight,
bool strikethroughHorizontal, bool strikethroughVertical,
bool strikethroughBottomLeftToTopRight, bool strikethroughTopLeftToBottomRight)
Parameter | Type | Description |
---|---|---|
hideTop | Boolean | 隐藏顶部边缘 |
hideBottom | Boolean | 隐藏底部边缘 |
hideLeft | Boolean | 隐藏左侧边缘 |
hideRight | Boolean | 隐藏右侧边缘 |
strikethroughHorizontal | Boolean | 边框框水平删除线 |
strikethroughVertical | Boolean | 边框框垂直删除线 |
strikethroughBottomLeftToTopRight | Boolean | 边框框底左到顶右删除线 |
strikethroughTopLeftToBottomRight | Boolean | 边框框顶左到底右删除线 |
Return Value
包含此元素的边框框
Examples
示例:
[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