[]
Creates a single-line border with the specified color.
public LineBorder CreateLineBorder(Color color)
Public Function CreateLineBorder(color As Color) As LineBorder
Type | Name | Description |
---|---|---|
Color | color | Color of the line |
Type | Description |
---|---|
LineBorder | a new instance of LineBorder. |
Creates a single-line border with the specified color and thickness.
public LineBorder CreateLineBorder(Color color, int thickness)
Public Function CreateLineBorder(color As Color, thickness As Integer) As LineBorder
Type | Name | Description |
---|---|---|
Color | color | Color of the line |
int | thickness | Thickness of the line in pixels |
Type | Description |
---|---|
LineBorder | a new instance of LineBorder. |
Creates a single-line border with the specified color and thickness, and specifies on which sides the border is drawn.
public LineBorder CreateLineBorder(Color color, int thickness, bool left, bool top, bool right, bool bottom)
Public Function CreateLineBorder(color As Color, thickness As Integer, left As Boolean, top As Boolean, right As Boolean, bottom As Boolean) As LineBorder
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 |
Type | Description |
---|---|
LineBorder | a new instance of LineBorder. |