Style::BorderColor Property
Gets or sets the border color of the Web server control.
Assembly: System.Web (in System.Web.dll)
public: [TypeConverterAttribute((WebColorConverter^::typeid))] property Color BorderColor { Color get(); void set(Color value); }
Property Value
Type: System.Drawing::ColorA System.Drawing::Color that represents the border color of the control. The default is Color::Empty, which indicates that this property is not set.
Use the BorderColor property to specify the border color of the Web server control. This property is set using a System.Drawing::Color object.
Note |
|---|
This property will render only for certain controls. For example, Table, Panel, DataGrid, Calendar, and ValidationSummary will render this property. It will also work for CheckBoxList, RadioButtonList, and DataList if their RepeatLayout property is RepeatLayout.Table and not RepeatLayout.Flow. However, it is rendered as the bordercolor attribute, which may not work in all browsers. |
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 Forms Page Code Model. |
Available since 1.1
