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.OnGetGroupHint Event

In This Article

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

#Declaration

Delphi
property OnGetGroupHint: TdxNavBarGetGroupHintEvent read; write;

#Remarks

This event occurs every time a NavBar group is about to display its hint, even if the group’s Hint property value is an empty string.

The Sender parameter provides access to the NavBar control that raised the OnGetGroupHint event. Cast the parameter value to the TdxNavBar class to access the control’s API members.

Use the AGroup parameter to identify and access the group that is about to display a hint.

The AHint parameter specifies the group’s hint text within an OnGetGroupHint 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 OnGetGroupHint event occurs only if the OptionsBehavior.Common.ShowGroupHint property is set to True.

See Also