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






Gets or sets the body background colour when the TaskBar is hot.

Syntax

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

Return Value

A Color value, this property specifies the body background colour of the TaskBar when hot. The default value is Color.FromArgb(224,233,255).

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