Spread Windows Forms 17
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / FpSpread Class / ColumnDragMoveCompleted Event


In This Topic
    ColumnDragMoveCompleted Event
    In This Topic
    Occurs when the user finishes moving a column by dragging.
    Syntax
    'Declaration
     
    
    Public Event ColumnDragMoveCompleted As DragMoveCompletedEventHandler
    'Usage
     
    
    Dim instance As FpSpread
    Dim handler As DragMoveCompletedEventHandler
     
    AddHandler instance.ColumnDragMoveCompleted, handler
    public event DragMoveCompletedEventHandler ColumnDragMoveCompleted
    Event Data

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

    PropertyDescription
    Gets the number of columns or rows being moved.  
    Gets the column or row index of the start location of the drag.  
    Gets the column or row index of the destination of the drag  
    Gets the view in which the columns or row have been dragged.  
    See Also