Interface IDragDispatcher
Interface for implementing by parent control supporting Drag operation.
Methods of this interface invoke corresponding drag methods of parent control.
Assembly: Syncfusion.Shared.Base.dll
public interface IDragDispatcher
Methods
Declaration
DragDropEffects DispatchDoDragDrop(object data, DragDropEffects allowedEffects)
Parameters
Type |
Name |
Description |
System.Object |
data |
|
System.Windows.Forms.DragDropEffects |
allowedEffects |
|
Returns
Type |
System.Windows.Forms.DragDropEffects |
Declaration
void DispatchDragOver(DragEventArgs drgevent)
Parameters
Type |
Name |
Description |
System.Windows.Forms.DragEventArgs |
drgevent |
|
Declaration
void DispatchOnDragDrop(DragEventArgs drgevent)
Parameters
Type |
Name |
Description |
System.Windows.Forms.DragEventArgs |
drgevent |
|
Declaration
void DispatchOnDragEnter(DragEventArgs drgevent)
Parameters
Type |
Name |
Description |
System.Windows.Forms.DragEventArgs |
drgevent |
|
Declaration
void DispatchOnDragLeave(EventArgs e)
Parameters
Type |
Name |
Description |
System.EventArgs |
e |
|
Declaration
void DispatchOnGiveFeedback(GiveFeedbackEventArgs args)
Parameters
Type |
Name |
Description |
System.Windows.Forms.GiveFeedbackEventArgs |
args |
|
Declaration
void DispatchOnQueryContinueDrag(QueryContinueDragEventArgs args)
Parameters
Type |
Name |
Description |
System.Windows.Forms.QueryContinueDragEventArgs |
args |
|