![]() Sub-properties |
![]() ![]() ![]() |
acTrayIcon component
|
type
|
TacWin2kInfoIcon = (iiNone, iiInfo, iiWarning, iiError);
|
|
TacWin2kInfoBalloon = class(TPersistent)
|
published
|
property Enabled: Boolean; // display balloon when form minimized
|
property Icon: TacWin2kInfoIcon; // the icon to display to the left of the balloon tooltip text
|
property NoSound: Boolean;
|
property Text: String; // specifies the information text
|
property Title: String; // the balloon title
|
property Timeout: Word; // The timeout value, in milliseconds, for the display of the balloon-style tooltip
|
end;
|
The Win2kInfoBalloon structure contains the properties used to display some useful information after minimizing of the form to the system tray. This information will displayed in the cartoon-style "balloon" window which can be either single- or multi-line:
|
![]() |
The Win2kInfoBalloon supported in Windows 2000 and later. You can specify these properties in the Windows 95/98 or NT4, however, the balloon window can be displayed in the Windows 2000 systems only.
|
Hint and WhatsThisHint properties;
|
acWin2kEffects component.
|