FMX.Forms.TForm.ShowHint

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ShowHint: Boolean read FShowHint write SetShowHint default 1;

C++

__property ShowHint = {default=1};

Properties

Type Visibility Source Unit Parent
property published
FMX.Forms.pas
FMX.Forms.hpp
FMX.Forms TForm

Description

Determines whether help hints are enabled or disabled for first level child controls in the form.

FMX.Forms.TForm.ShowHint inherits from FMX.Forms.TCommonCustomForm.ShowHint. All content below this line refers to FMX.Forms.TCommonCustomForm.ShowHint.

Determines whether help hints are enabled or disabled for first level child controls in the form.

For more information about the rules for enabling hints for a control, see Using Hints to Show Contextual Help in a FireMonkey Application.

TCommonCustomForm.ShowHint is a Boolean property set as True by default. When you place a child control in the form, and set the TControl.Hint property, the hint is displayed because the TControl.ParentShowHint is True by default.

If the TCommonCustomForm.ShowHint property of the form is set to False, the hint is not displayed in the child control.

To show the hint for a control, even when the TCommonCustomForm.ShowHint property of the form is set to False, set TControl.ShowHint for the control to True.

See Also