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