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






Gets or sets the background colour of the SideBar buttons when in the normal state.

Syntax

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

Return Value

A Color value, this property specifies the colour of the SideBar buttons when in the normal state. The default value is Color.FromArgb(173, 209, 255).

Remarks

This property affects all SideBar Items. You can specify the background colour of an individual SideBarItem by setting its ButtonBackColor property.

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