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

DocumentGroup.TabMouseActivating Event

Occurs when an end-user clicks a tab page header within the current DocumentGroup to activate a corresponding Document.

Namespace: DevExpress.XtraBars.Docking2010.Views.Tabbed

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

public event DocumentCancelEventHandler TabMouseActivating

#Event Data

The TabMouseActivating event's data class is DocumentCancelEventArgs. The following properties provide information specific to this event:

Property Description
Cancel Gets or sets a value indicating whether the event should be canceled. Inherited from CancelEventArgs.
Document The Document related to the current event.

#Remarks

The TabMouseActivating event fires whenever an end-user clicks a Document‘s page header, whether this tab has already been activated or not.

The TabMouseActivating event allows you to react to an end-user clicking tab headers in individual DocumentGroups. To perform global actions when clicking tab headers within an entire View, handle the TabbedView.TabMouseActivating event instead.

See Also