[]
        
(Showing Draft Content)

FarPoint.Win.LineBorder.-ctor

LineBorder Constructor

LineBorder(Color)

Creates a simple single-line border with the specified color.

Declaration
public LineBorder(Color color)
Public Sub New(color As Color)
Parameters
Type Name Description
Color color

Color of the line

LineBorder(Color, int)

Creates a simple single-line border with the specified color and thickness.

Declaration
public LineBorder(Color color, int thickness)
Public Sub New(color As Color, thickness As Integer)
Parameters
Type Name Description
Color color

Color of the line

int thickness

Thickness of the line, in pixels

LineBorder(Color, int, bool, bool, bool, bool)

Creates a simple single-line border with the specified color, thickness, and sides on which the border is drawn.

Declaration
public LineBorder(Color color, int thickness, bool left, bool top, bool right, bool bottom)
Public Sub New(color As Color, thickness As Integer, left As Boolean, top As Boolean, right As Boolean, bottom As Boolean)
Parameters
Type Name Description
Color color

Color of the line

int thickness

Thickness of the line, in pixels

bool left

Whether the line is drawn on the left side of the cell

bool top

Whether the line is drawn on the top of the cell

bool right

Whether the line is drawn on the right side of the cell

bool bottom

Whether the line is drawn on the bottom of the cell