Interface BoxStyle

Describes all of the elements of boxes.

interface BoxStyle {
    bottom?: BoxStyleHorizontalEdge;
    corner?: string;
    hAlign?: PAD_SIDE;
    hPadding?: number;
    horizontal?: string;
    left?: string;
    right?: string;
    titleBorder?: BoxStyleTitleBorder;
    titleHAlign?: PAD_SIDE;
    top?: BoxStyleHorizontalEdge;
    vPadding?: number;
    vertical?: string;
}

Properties

The bottom edge of the box.

corner?: string

The corners of the box.

hAlign?: PAD_SIDE

The horizontal alignment of the internals of the box.

hPadding?: number

Horizontal padding of the internals of the box.

horizontal?: string

The horizontal edges of the box.

left?: string

The left edge of the box.

right?: string

The right edge of the box.

titleBorder?: BoxStyleTitleBorder

The borders of the title of the box.

titleHAlign?: PAD_SIDE

The horizontal alignment of the title of the box.

The top edge of the box.

vPadding?: number

Vertical padding of the internals of the box.

vertical?: string

The vertical edges of the box.