DockItemDockingEventArgs(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.v24.1.dll
NuGet Package: DevExpress.Wpf.Docking
Declaration
public DockItemDockingEventArgs(
BaseLayoutItem item,
Point pt,
BaseLayoutItem target,
DockType type,
bool isHiding
)
Parameters
Name | Type | Description |
---|---|---|
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