WebControl::BorderStyle Property
Gets or sets the border style of the Web server control.
Assembly: System.Web (in System.Web.dll)
public: property BorderStyle BorderStyle { virtual BorderStyle get(); virtual void set(BorderStyle value); }
Property Value
Type: System.Web.UI.WebControls::BorderStyleOne of the BorderStyle enumeration values. The default is NotSet.
Use the BorderStyle property to specify the border style for the Web server control. This property is set using one of the BorderStyle enumeration values. The following table lists the possible values.
Border Style | Description |
|---|---|
NotSet | The border style is not set. |
None | No border |
Dotted | A dotted line border. |
Dashed | A dashed line border. |
Solid | A solid line border. |
Double | A solid double line border. |
Groove | A grooved border for a sunken border appearance. |
Ridge | A ridged border for a raised border appearance. |
Inset | An inset border for a sunken control appearance. |
Outset | An outset border for a raised control appearance. |
Note |
|---|
This property will not render on browsers earlier than Microsoft Internet Explorer 4 for any Web server control. There is no equivalent to it in HTML 3.2. |
The following example illustrates how to set the BorderStyle property of the Table control, which is inherited from the WebControl base class.
Note |
|---|
The following code sample uses the single-file code model and may not work correctly if copied directly into a code-behind file. This code sample must be copied into an empty text file that has an .aspx extension. For more information on the Web Forms code model, see ASP.NET Web Forms Page Code Model. |
Available since 1.1
.jpeg?cs-save-lang=1&cs-lang=cpp)