Skip to main content

TcxCustomEditButton.Hint Property

Specifies a tooltip (hint) for the editor button.

Declaration

property Hint: string read; write;

Property Value

Type Description
string

The editor button hint string.

Remarks

To display a tooltip for an embedded button in a standalone editor, you need to set the editor’s ShowHint property to True and assign hint text to the Hint property.

VCL Editors Library: An Editor Button Hint

Button Hints in In-Place Editors

To display cell hints for in-place editors in container controls, use the corresponding CellHints behavior setting.

Data Grid

To enable hints for in-place editors in a grid Table View, set its OptionsBehavior.CellHints property to True.

Tree List

To enable hints for in-place editors in a Tree List control, set its OptionsBehavior.CellHints property to True.

Vertical Grid

In-place editor hints are initially enabled in a Vertical Grid control. You can set its OptionsBehavior.CellHints property to False or True to disable or enable in-place editor hints.

Tooltip Scaling in RAD Studio 10.3 and Earlier IDEs

Tooltips do not scale properly according to the current monitor DPI in projects built with Embarcadero RAD Studio® 10.3 and earlier IDEs due to a tooltip implementation bug in the VCL library.

To work around this bug, you need to place the TcxHintStyleController component on a form.

Default Value

The Hint property’s default value is an empty string.

See Also