Style::BackColor Property

 

Gets or sets the specified background color for the style. The default value is Color::Empty. This API is obsolete. For information about how to develop ASP.NET mobile applications, see the www.asp.net/mobile Web site.

Namespace:   System.Web.UI.MobileControls
Assembly:  System.Web.Mobile (in System.Web.Mobile.dll)

public:
[BindableAttribute(true)]
[TypeConverterAttribute((WebColorConverter^::typeid))]
property Color BackColor {
	Color get();
	void set(Color value);
}

Property Value

Type: System.Drawing::Color

The specified background color for the style.

Unlike the other properties, the BackColor property is not inherited from its parent. For example, if you set the BackColor property to cyan on a parent control, a child control will not inherit a background color of cyan; you must explicitly set the child control's BackColor property to cyan, or you must set the BackColor property of the parent control and apply the style sheet to the child control. This is consistent with the behavior of cascading style sheets.

.NET Framework
Available since 1.1

Style Class
System.Web.UI.MobileControls Namespace
Introduction to the StyleSheet Control

Return to top
Show: