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


In This Topic
    ColumnDragMoveCompleting Event
    In This Topic
    Occurs before the user finishes dragging column(s).
    Syntax
    'Declaration
     
    
    Public Event ColumnDragMoveCompleting As DragMoveCompletingEventHandler
    'Usage
     
    
    Dim instance As FpSpread
    Dim handler As DragMoveCompletingEventHandler
     
    AddHandler instance.ColumnDragMoveCompleting, handler
    public event DragMoveCompletingEventHandler ColumnDragMoveCompleting
    Event Data

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

    PropertyDescription
    Gets or sets whether to cancel default processing.  
    Gets the number of columns or rows being moved. (Inherited from FarPoint.Win.Spread.DragMoveCompletedEventArgs)
    Gets the column or row index of the start location of the drag. (Inherited from FarPoint.Win.Spread.DragMoveCompletedEventArgs)
    Gets the column or row index of the destination of the drag (Inherited from FarPoint.Win.Spread.DragMoveCompletedEventArgs)
    Gets the view in which the columns or row have been dragged. (Inherited from FarPoint.Win.Spread.DragMoveCompletedEventArgs)
    See Also