Spread WPF 17
GrapeCity.Windows.SpreadSheet.UI Namespace / GcSpreadSheet Class / DragDropBlock Event


In This Topic
    DragDropBlock Event (GcSpreadSheet)
    In This Topic
    Occurs when the user drags and drops a range of cells.
    Syntax
    'Declaration
     
    Public Event DragDropBlock As EventHandler(Of DragDropBlockEventArgs)
    'Usage
     
    Dim instance As GcSpreadSheet
    Dim handler As EventHandler(Of DragDropBlockEventArgs)
     
    AddHandler instance.DragDropBlock, handler
    public event EventHandler<DragDropBlockEventArgs> DragDropBlock
    Event Data

    The event handler receives an argument of type DragDropBlockEventArgs containing data related to this event. The following DragDropBlockEventArgs properties provide information specific to this event.

    PropertyDescription
    (Inherited from System.ComponentModel.CancelEventArgs)
    Gets the column count of the cell range being dragged.  
    Gets whether the source range is copied.  
    Gets the CopyOption value for the drag and drop operation.  
    Gets the column index of the top left cell of the source range (range being dragged).  
    Gets the row index of the top left cell of the source range (range being dragged).  
    Gets whether the source range is inserted.  
    Gets the row count of the cell range being dragged.  
    Gets the column index of the bottom right cell of the destination range (where selection is dropped).  
    Gets the row index of the top left cell of the destination range (where selection is dropped).  
    See Also