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

TcxNavigatorButton.Hint Property

Specifies the hint text that is shown when a user moves the mouse pointer over a navigator button.

#Declaration

Delphi
property Hint: string read; write;

#Property Value

Type
string

#Remarks

Set the Hint property to a string providing more information about the meaning of a particular button. The hint text appears in the Help Hint window when a user pauses with the mouse pointer over the button. This property overrides the default hint strings presented in the following table:

Button Name Description
First First record
PriorPage Prior page
Prior Prior record
Next Next record
NextPage Next page
Last Last record
Insert Insert record
Append Append record
Delete Delete record
Edit Edit record
Post Post edit
Cancel Cancel edit
Refresh Refresh data
SaveBookmark Save Bookmark
GotoBookmark Goto Bookmark
Filter Filter data

The following code is used to change the default hint of the PriorPage button with - “Use this button to jump to the previous page”:

DBNavigator1.Buttons[NBDI_PRIORPAGE].Hint := 'Use this button to jump to the previous page';
See Also