Vcl.ScreenTips.TScreenTipsManager.Options

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Options: TScreenTipOptions read FOptions write FOptions default 3;

C++

__property Options = {default=3};

Properties

Type Visibility Source Unit Parent
property published
Vcl.ScreenTips.pas
Vcl.ScreenTips.hpp
Vcl.ScreenTips TScreenTipsManager

Description

Options to customize the display of the screen tip window.

Vcl.ScreenTips.TScreenTipsManager.Options inherits from Vcl.ScreenTips.TCustomScreenTipsManager.Options. All content below this line refers to Vcl.ScreenTips.TCustomScreenTipsManager.Options.

Options to customize the display of the screen tip window.

Use Options to show or not show the Caption and the ShortCut in the Header of a screen tip when it is created or generated.

Options is of type TScreenTipOptions, which is a set of TScreenTipOption values.

The following table describes the TScreenTipOption values:

Value Meaning

soShowHeader

The header of the screen tip is shown.

soShowShortCut

The shortcut of the action is shown.

By default, Options is set to [soShowHeader..soShowShortCut], meaning that both Caption and ShortCut are shown on the screen tip window.

See Also