Vcl.VirtualImage.TVirtualImage.ParentShowHint

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ParentShowHint;

C++

__property ParentShowHint = {default=1};

Properties

Type Visibility Source Unit Parent
property published
Vcl.VirtualImage.pas
Vcl.VirtualImage.hpp
Vcl.VirtualImage TVirtualImage

Description

Specifies where a control looks to find out if its Help Hint should be shown.

Vcl.VirtualImage.TVirtualImage.ParentShowHint inherits from Vcl.Controls.TControl.ParentShowHint. All content below this line refers to Vcl.Controls.TControl.ParentShowHint.

Specifies where a control looks to find out if its Help Hint should be shown.

Use ParentShowHint to ensure that all the controls on a form either uniformly show their Help Hints or uniformly do not show them.

If ParentShowHint is True, the control uses the ShowHint property value of its parent. If ParentShowHint is False, the control uses the value of its own ShowHint property.

To provide Help Hints only for selected controls on a form, set the ShowHint property for those controls that should have Help Hints to True, and ParentShowHint becomes False automatically.

Note: Enable or disable all Help Hints for the entire application using the ShowHint property of the application object.

See Also