DragEnterEventArgs Properties
Provides data for the DragEnter event.| Name | Description |
|---|---|
| Action | Gets or sets the drag-and-drop action (Copy, Move, etc.) to perform. Inherited from DXDragEventArgs. |
| AllowDrop | Gets or sets whether it is allowed to drop data elements to the target control. |
| Cursor | Gets or sets the mouse pointer. Inherited from DXDragEventArgs. |
| Data | Gets or sets the data elements being dragged. Inherited from DXDragEventArgs. |
| Handled | Gets or sets whether the event was handled and allows you to suppress the default action. Inherited from DXDefaultEventArgs. |
| KeyState | Gets the pressed mouse buttons (left, middle, right) and modifier keys (Shift, Ctrl, Alt). Inherited from DXDragEventArgs. |
| Location | Gets the mouse cursor’s position. Inherited from DXDragEventArgs. |
| Source | Gets the source control. Inherited from DXDragEventArgs. |
| Target | Gets the target control. Inherited from DXDragEventArgs. |
See Also