BorderStyle Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the border style of a control.
public enum class BorderStyle
public enum BorderStyle
type BorderStyle =
Public Enum BorderStyle
- Inheritance
Fields
Name | Value | Description |
---|---|---|
NotSet | 0 | No set border style. |
None | 1 | No border. |
Dotted | 2 | A dotted line border. |
Dashed | 3 | A dashed line border. |
Solid | 4 | A solid line border. |
Double | 5 | A double solid line border. |
Groove | 6 | A grooved border for a sunken border appearance. |
Ridge | 7 | A ridged border for a raised border appearance. |
Inset | 8 | An inset border for a sunken control appearance. |
Outset | 9 | An outset border for a raised control appearance. |
Remarks
The BorderStyle enumeration represents the different border style options for a control.
The width of the border is controlled by using the BorderWidth property of the WebControl class.
Note
When using the Double style, the border width you specify must be at least 3 pixels wide to accommodate both lines and the space in between.