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

TdxNavBarShowingPopupEvent Type

The procedural type of a NavBar control’s popup window display events.

#Declaration

Delphi
TdxNavBarShowingPopupEvent = procedure(Sender: TObject; var AAllow: Boolean) of object;

#Parameters

Name Type
Sender TObject
AAllow Boolean

#Remarks

Use the Sender parameter to access the NavBar control that raised a TdxNavBarShowingPopupEvent event. Cast the parameter value to the TdxNavBar class to access the control’s API members.

Assign False to the AAllow parameter to prevent a NavBar control’s popup window from appearing.

The NavBar control’s OnOverlayShowing and OnPopupShowing events reference the TdxNavBarShowingPopupEvent procedural type.

See Also