ICreate.Controls.Bars Send comments on this topic.
TitleBackColor Property
See Also 
ICreate.Controls.Bars Namespace > TaskBar Class : TitleBackColor Property






Gets or sets the background colour of the TaskBar title bar.

Syntax

Visual Basic (Declaration) 
Public Property TitleBackColor As Color
Visual Basic (Usage)Copy Code
Dim instance As TaskBar
Dim value As Color
 
instance.TitleBackColor = value
 
value = instance.TitleBackColor
C# 
public Color TitleBackColor {get; set;}
Delphi 
public read-write property TitleBackColor: Color; 
JScript 
public function get,set TitleBackColor : Color
Managed Extensions for C++ 
public: __property Color get_TitleBackColor();
public: __property void set_TitleBackColor( 
   Color value
);
C++/CLI 
public:
property Color TitleBackColor {
   Color get();
   void set (Color value);
}

Return Value

A Color value, this property represents the colour of the TaskBar title bar. This colour is applicable when the TaskBar is cold. The default value is Color.FromArgb(29, 87, 198).

Remarks

A TaskBar is hot when is contains the mouse cursor or input focus.

Requirements

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also