Spread Windows Forms 15.0
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / FpSpread Class / DragDropBlockCompleted Event


In This Topic
    DragDropBlockCompleted Event
    In This Topic
    Occurs at the completion of the user dragging and dropping a range of cells.
    Syntax
    'Declaration
     
    
    Public Event DragDropBlockCompleted As DragDropBlockCompletedEventHandler
    'Usage
     
    
    Dim instance As FpSpread
    Dim handler As DragDropBlockCompletedEventHandler
     
    AddHandler instance.DragDropBlockCompleted, handler
    public event DragDropBlockCompletedEventHandler DragDropBlockCompleted
    Event Data

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

    PropertyDescription
    Gets whether the source range is copied or moved.  
    Gets the column index of the top left cell of the source range (being dragged).  
    Gets the column index of the bottom right cell of the source range (being dragged).  
    Gets whether data or formatting (or both) is copied or moved.  
    Gets the column index of the top left cell of the destination range (where selection is dropped).  
    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).  
    Gets the row index of the bottom right cell of the destination range (where selection is dropped).  
    Gets whether the destination range contains data (that is overwritten).  
    Gets the row index of the top left cell of the source range (being dragged).  
    Gets the row index of the bottom right cell of the source range (being dragged).  
    See Also