Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxCustomGridTableItem.OnGetCellHint Event

In This Article

Occurs before the data item’s hint is shown when a user positions the mouse pointer over the item’s data cell.

#Declaration

Delphi
property OnGetCellHint: TcxGridGetCellHintEvent read; write;

#Remarks

Handle this event to customize the item’s hint and its display position.

The Sender parameter specifies the currently processed item.

The ARecord parameter specifies the record in a Card View that the item belongs to.

The ACellViewInfo parameter provides the ViewInfo information on the item’s data cell.

The AMousePos parameter specifies relative onscreen coordinates of the mouse pointer.

The AHintText parameter specifies the text to be drawn in the hint window. Pass an empty string as this parameter to hide the hint window.

The AIsHintMultiLine parameter specifies whether the text can be wrapped.

The AHintTextRect parameter specifies relative onscreen coordinates of the hint window.

See Also