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

TdxCustomNavBar.OnGetLinkHint Event

In This Article

Enables you to override or hide hints displayed for NavBar links.

#Declaration

Delphi
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.

See Also