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

TdxRibbonCustomBackstageView.OnTabClick Event

In This Article

Enables you to respond to end-user tab selection.

#Declaration

Delphi
property OnTabClick: TdxRibbonBackstageViewTabClickEvent read; write;

#Remarks

Sender specifies the menu that owns tabs.

ATab specifies the selected tab.

Handle this event to respond to end-user tab selection performed using any of the following methods:

  • Clicking a tab;

  • Using a tab page KeyTip;

  • Pressing the Enter key while a tab is hot-tracked;

  • Pressing the Up Arrow or Down Arrow key to move selection to a tab.

Unlike the OnTabChanging and OnTabChanged events, the OnTabClick event fires even when a currently active tab is selected. So, with the OnTabClick event, you can dynamically update the content of any tab whenever an end-user selects it.

See Also