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






Gets or sets the appearance of the Tip displayed when the mouse hovers over the items of a Bar.

Syntax

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

Return Value

A TipAppearance value, this property specifies the appearance of the Tip displayed when the mouse hovers over an item on the Bar. The default value is TipAppearance.Gradient.

Remarks

The tip text can be displayed on the standard yellow background with black border or on a gradient background with darkened border.

Standard tool tip:

Gradient tool tip:

If you would like to use the other features of ToolTip, like IsBalloon, ToolTipIcon etc. then set the Tip property of the BarItemCommand to the empty string and use the standard ToolTip component.

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