TcxNavigatorButton.Hint Property
Specifies the hint text that is shown when a user moves the mouse pointer over a navigator button.
Declaration
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