Skip to main content

DockPanel.TabsPositionChanged Event

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

Namespace: DevExpress.XtraBars.Docking

Assembly: DevExpress.XtraBars.v23.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