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

In This Article

Fires when the mouse cursor pauses over a NavBar group.

#Declaration

Delphi
property OnGroupHotTrack: TdxNavBarGroupEvent read; write;

#Remarks

Write an event handler for the OnGroupHotTrack event to perform specific actions each time a group header is hot-tracked. This can be used, for instance, to display explanatory information within the status bar of your application. If you need to response to hot-tracking links, use the OnLinkHotTrack event.

The Sender parameter specifies the sender of the event. The sender of the event is the NavBar control.

The AGroup parameter specifies an object of the TdxNavBarGroup type which represents the NavBar group being hot-tracked.

See Also