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

DockPanel.TabsPositionChanged Event

Fires after the dock panel’s DockPanel.TabsPosition property has been changed.

Namespace: DevExpress.XtraBars.Docking

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

public event TabsPositionChangedEventHandler TabsPositionChanged

#Event Data

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

Property Description
OldTabsPosition Gets the previous position of the tabs in a tab container.
Panel Gets the processed dock panel. Inherited from DockPanelEventArgs.
TabsPosition Gets the current position of the tabs in a tab container.

#Remarks

The TabsPositionChanged event serves as a notification that the dock panel’s DockPanel.TabsPosition property has been changed. This event handler receives a TabsPositionChangedEventArgs parameter type. It allows the previous and current values of the panel’s DockPanel.TabsPosition property to be determined.

See Also