WPF

Code Examples Upgrade Guide User Guide Demos Support Forums Download
  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Delegate GridOleDropAtRowColEventHandler

    Show / Hide Table of Contents

    Delegate 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.

    Namespace: Syncfusion.Windows.Controls.Grid
    Assembly: Syncfusion.Grid.Wpf.dll
    Syntax
    public delegate void GridOleDropAtRowColEventHandler(object sender, GridOleDropAtRowColEventArgs e);
    Parameters
    Type Name Description
    System.Object sender
    GridOleDropAtRowColEventArgs e
    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 Description
    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

    See Also

    GridOleDropAtRowColEventHandler
    Back to top Generated by DocFX
    Copyright © 2001 - 2023 Syncfusion Inc. All Rights Reserved