Vcl.Controls.TControl.ParentCustomHint

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ParentCustomHint: Boolean read FParentCustomHint write SetParentCustomHint default True;

C++

__property bool ParentCustomHint = {read=FParentCustomHint, write=SetParentCustomHint, default=1};

Properties

Type Visibility Source Unit Parent
property published
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls TControl

Description

Specifies where a control looks for its custom hint.

To have a control use the same hint customization information as its parent control, set ParentCustomHint to true.

If ParentCustomHint is false, the control uses its own CustomHint property.

Set ParentCustomHint to true for all controls to ensure that all the controls on a form display their hint messages alike.

When the value of a control's CustomHint property changes, ParentCustomHint becomes false automatically.

See Also