Interface IGridOleDragDropEventsTarget
Provides the Ole Drag Drop events raised by GridControlBase objects.
Namespace: Syncfusion.Windows.Forms.Grid
Assembly: Syncfusion.Grid.Windows.dll
Syntax
public interface IGridOleDragDropEventsTarget
Methods
OnDragDrop(DragEventArgs)
Occurs when a drag-and-drop operation is completed and before System.Windows.Forms.Control.DragDrop event is raised.
Declaration
void OnDragDrop(DragEventArgs e)
Parameters
Type | Name | Description |
---|---|---|
System.Windows.Forms.DragEventArgs | e | System.Windows.Forms.DragEventArgs containing data related to this event |
OnDragEnter(DragEventArgs)
Occurs when an object is dragged into the control's bounds and before System.Windows.Forms.Control.DragEnter event is raised.
Declaration
void OnDragEnter(DragEventArgs e)
Parameters
Type | Name | Description |
---|---|---|
System.Windows.Forms.DragEventArgs | e | System.Windows.Forms.DragEventArgs containing data related to this event |
OnDragLeave(EventArgs)
Occurs when an object is dragged out of the control's bounds and before System.Windows.Forms.Control.DragLeave event is raised.
Declaration
void OnDragLeave(EventArgs e)
Parameters
Type | Name | Description |
---|---|---|
System.EventArgs | e | System.Windows.Forms.DragEventArgs containing data related to this event |
OnDragOver(DragEventArgs)
Occurs when an object is dragged over the control's bounds and before System.Windows.Forms.Control.DragOver event is raised.
Declaration
void OnDragOver(DragEventArgs e)
Parameters
Type | Name | Description |
---|---|---|
System.Windows.Forms.DragEventArgs | e | System.Windows.Forms.DragEventArgs containing data related to this event |