Vcl.ScreenTips.TCustomScreenTipsManager.Options

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Options: TScreenTipOptions read FOptions write FOptions default [soShowHeader..soShowShortCut];

C++

__property TScreenTipOptions Options = {read=FOptions, write=FOptions, default=3};

Properties

Type Visibility Source Unit Parent
property public
Vcl.ScreenTips.pas
Vcl.ScreenTips.hpp
Vcl.ScreenTips TCustomScreenTipsManager

Description

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