Style.BorderWidth Property
Assembly: System.Web (in system.web.dll)
/** @property */ public Unit get_BorderWidth () /** @property */ public void set_BorderWidth (Unit value)
public function get BorderWidth () : Unit public function set BorderWidth (value : Unit)
Not applicable.
Property Value
A Unit that represents the border width of a Web server control. The default value is Unit.Empty, which indicates that this property is not set.Use the BorderWidth property to specify a border width for a control.
Note: |
|---|
| This property does not work with all Web server controls. It only applies to controls that display as a table, such as Table and DataGrid. |
This property is set with a Unit object. If the Value property of the Unit contains a negative number, an exception is thrown.
Note: |
|---|
| The border width can only be expressed in pixels for browsers earlier than Microsoft Internet Explorer version 5. All unit types are supported in Microsoft Internet Explorer version 5 and later. Refer to the specific control for details. |
This example demonstrates how to use a Style object to change the style properties of multiple controls at once. Each time one of the Style property values changes, each control must call its ApplyStyle method. Note that not all the controls included support all the properties demonstrated. If a control does not support a particular property, the appearance of the control will not change when the property value is changed.
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 Page Code Model. |
Note: