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






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

Syntax

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

Return Value

A Color value, this property specifies the colour of Text on the SideBar buttons when in the normal state. The default value is Color.FromArgb(32, 77, 137).

Remarks

This property affects all SideBar Items. You can specify the Text colour for an individual SideBarItem by setting its ButtonForeColor 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