ToBorderBox

ToBorderBox()

将此元素放置在边框框内

public IMathBorderBox ToBorderBox()

Return Value

包含此元素的边框框

Examples

示例:

[C#]
IMathBorderBox borderBox = new MathematicalText("x+y+z").ToBorderBox();

See Also


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)
ParameterTypeDescription
hideTopBoolean隐藏顶部边缘
hideBottomBoolean隐藏底部边缘
hideLeftBoolean隐藏左侧边缘
hideRightBoolean隐藏右侧边缘
strikethroughHorizontalBoolean边框框水平删除线
strikethroughVerticalBoolean边框框垂直删除线
strikethroughBottomLeftToTopRightBoolean边框框底左到顶右删除线
strikethroughTopLeftToBottomRightBoolean边框框顶左到底右删除线

Return Value

包含此元素的边框框

Examples

示例:

[C#]
IMathBorderBox borderBox = new MathematicalText("x+y+z").ToBorderBox(false, false, true, true, false, false, false, false);

See Also