Skip to main content

DockOperation Enum

Provides members to label different docking operation types.

Namespace: DevExpress.Xpf.Docking

Assembly: DevExpress.Xpf.Docking.v14.2.dll

#Declaration

public enum DockOperation

#Members

Name Description
Close

A target Dock Item is being closed.

Dock

A target Dock Item is being docked to a DockLayoutManager's edge or another Dock Item.

Float

A docked Dock Item is made floating.

Hide

A Dock Item is made auto-hidden.

Restore

A closed Dock Item is being restored (see the DockLayoutManager.ClosedPanels property to learn more).

Reorder

#Remarks

The DockOperation enumerator values are used within the DockLayoutManager.DockOperationStarting and DockLayoutManager.DockOperationCompleted events. Get the current DockOperationStartingEventArgs.DockOperation or DockOperationCompletedEventArgs.DockOperation property value to determine a type of a docking operation that is to be performed.

See the DockLayoutManager.DockOperationStarting event to learn more.

See Also