Class GridOleDropAtRowColEventHandler
Occurs when the when the user releases the mouse over a cell at the end of an OLE drag-and-drop operation and before the data are applied to the grid.
Inheritance
System.Object
GridOleDropAtRowColEventHandler
Namespace: Syncfusion.Windows.Controls.Grid
Assembly: Syncfusion.Grid.Wpf.dll
Syntax
public sealed class GridOleDropAtRowColEventHandler : MulticastDelegate
Remarks
This event lets you provide your own customized paste data behavior.
If you do not wish the grid to proceed with default behavior for this method, set Handled to True. The grid will check this flag to see whether it should proceed. If you set it to True, the calling method will check Result as indication if the operation was successful.
If you want the grid to proceed with default behavior, do not change Handled.
Constructors
GridOleDropAtRowColEventHandler(Object, IntPtr)
Declaration
public GridOleDropAtRowColEventHandler(object object, IntPtr method)
Parameters
Type | Name | Description |
---|---|---|
System.Object | object | |
System.IntPtr | method |
Methods
BeginInvoke(Object, GridOleDropAtRowColEventArgs, AsyncCallback, Object)
Declaration
public virtual IAsyncResult BeginInvoke(object sender, GridOleDropAtRowColEventArgs e, AsyncCallback callback, object object)
Parameters
Type | Name | Description |
---|---|---|
System.Object | sender | |
GridOleDropAtRowColEventArgs | e | |
System.AsyncCallback | callback | |
System.Object | object |
Returns
Type |
---|
System.IAsyncResult |
EndInvoke(IAsyncResult)
Declaration
public virtual void EndInvoke(IAsyncResult result)
Parameters
Type | Name | Description |
---|---|---|
System.IAsyncResult | result |
Invoke(Object, GridOleDropAtRowColEventArgs)
Declaration
public virtual void Invoke(object sender, GridOleDropAtRowColEventArgs e)
Parameters
Type | Name | Description |
---|---|---|
System.Object | sender | |
GridOleDropAtRowColEventArgs | e |