[]
Creates a double-line border with the specified color and a width of 3.
public DoubleLineBorder(Color color)
Public Sub New(color As Color)
Type | Name | Description |
---|---|---|
Color | color | Color of the double lines |
Creates a double-line border with the specified color, a width of 3, and sides on which the border is drawn.
public DoubleLineBorder(Color color, bool left, bool top, bool right, bool bottom)
Public Sub New(color As Color, left As Boolean, top As Boolean, right As Boolean, bottom As Boolean)
Type | Name | Description |
---|---|---|
Color | color | Color of the double lines |
bool | left | Whether to draw the left side |
bool | top | Whether to draw the top |
bool | right | Whether to draw the right side |
bool | bottom | Whether to draw the bottom |