TdxCustomNavBar.OnGetLinkHint Event
Enables you to override or hide hints displayed for NavBar links.
Declaration
property OnGetLinkHint: TdxNavBarGetLinkHintEvent read; write;
Remarks
This event occurs every time a NavBar item link is about to display its hint, even if the item link’s Hint property value is an empty string.
The Sender parameter provides access to the NavBar control that raised the OnGetLinkHint event. Cast the parameter value to the TdxNavBar class to access the control’s API members.
Use the ALink parameter to identify and access the link that is about to display a hint.
The AHint parameter specifies the link’s hint text within an OnGetLinkHint event handler. Assign a text string to the parameter to override an existing hint. To hide the hint, assign an empty string instead.
Note
The OnGetLinkHint event occurs only if the OptionsBehavior.Common.ShowLinksHint property is set to True.