ToBorderBox

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


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)
ParameterTypeDescription
hideTopBooleanHide Top Edge
hideBottomBooleanHide Bottom Edge
hideLeftBooleanHide Left Edge
hideRightBooleanHide Right Edge
strikethroughHorizontalBooleanBorder Box Strikethrough Horizontal
strikethroughVerticalBooleanBorder Box Strikethrough Vertical
strikethroughBottomLeftToTopRightBooleanBorder Box Strikethrough Bottom-Left to Top-Right
strikethroughTopLeftToBottomRightBooleanBorder 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