[]
Creates a rounded-edge, single-line border with the specified color.
public RoundedLineBorder(Color color)
Public Sub New(color As Color)
Type | Name | Description |
---|---|---|
Color | color | Color of the line |
Creates a rounded-edge, single-line border with the specified color and thickness.
public RoundedLineBorder(Color color, int thickness)
Public Sub New(color As Color, thickness As Integer)
Creates a rounded-edge, single-line border with the specified color and thickness, and specifies on which sides the border is drawn.
public RoundedLineBorder(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)
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 |