Skip to main content
A newer version of this page is available. .

DockItemDockingEventArgs(Boolean, BaseLayoutItem, Point, BaseLayoutItem, DockType, Boolean) Constructor

Initializes a new instance of the DockItemDockingEventArgs class with the specified settings.

Namespace: DevExpress.Xpf.Docking.Base

Assembly: DevExpress.Xpf.Docking.v19.1.dll

Declaration

public DockItemDockingEventArgs(
    bool cancel,
    BaseLayoutItem item,
    Point pt,
    BaseLayoutItem target,
    DockType type,
    bool isHiding
)

Parameters

Name Type Description
cancel Boolean

A Boolean value that specifies whether the current event must be canceled.

item BaseLayoutItem

A BaseLayoutItem object being docked.

pt Point

A Point at which the item is being docked.

target BaseLayoutItem

A BaseLayoutItem object to which the current item is being docked.

type DockType

A DockType value that specifies how the item is docked to another item.

isHiding Boolean

A Boolean value that specifies whether the item is being set to the auto-hide state.

See Also