Vcl.ScreenTips.TCustomScreenTipsManager.DoShowScreenTip

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoShowScreenTip(Action: TBasicAction; Item: TScreenTipItem;  var HintInfo: THintInfo); virtual;

C++

virtual void __fastcall DoShowScreenTip(System::Classes::TBasicAction* Action, TScreenTipItem* Item, Vcl::Controls::THintInfo &HintInfo);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.ScreenTips.pas
Vcl.ScreenTips.hpp
Vcl.ScreenTips TCustomScreenTipsManager

Description

OnShowScreenTip event dispatcher.

Override the protected DoShowScreenTip to provide responses, in addition to those provided when calling the OnShowScreenTip event handler, when a screen tip needs to be shown.

In addition, the method uses DoShow to show the screen tip for the Action.

Action is the action to which the screen tip Item is shown and HintInfo is the hint that will be written.

See Also