[]
Creates a double-line border with the specified color.
public DoubleLineBorder CreateDoubleLineBorder(Color color)
Public Function CreateDoubleLineBorder(color As Color) As DoubleLineBorder
Type | Name | Description |
---|---|---|
Color | color | Color of the double lines |
Type | Description |
---|---|
DoubleLineBorder | Double-line border (DoubleLineBorder object) with the parameters specified |
Creates a double-line border with the specified color and sides on which the border is drawn.
public DoubleLineBorder CreateDoubleLineBorder(Color color, bool left, bool top, bool right, bool bottom)
Public Function CreateDoubleLineBorder(color As Color, left As Boolean, top As Boolean, right As Boolean, bottom As Boolean) As DoubleLineBorder
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 |
Type | Description |
---|---|
DoubleLineBorder | Double-line border (DoubleLineBorder object) with the parameters specified |