Spread Windows Forms 9.0 Product Documentation
DragDropBlockCompleted Event
Example 


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
ActionGets whether the source range is copied or moved.  
ColumnBeginGets the column index of the top left cell of the source range (being dragged).  
ColumnEndGets the column index of the bottom right cell of the source range (being dragged).  
DataOnlyGets whether data or formatting (or both) is copied or moved.  
DestinationColumnBeginGets the column index of the top left cell of the destination range (where selection is dropped).  
DestinationColumnEndGets the column index of the bottom right cell of the destination range (where selection is dropped).  
DestinationRowBeginGets the row index of the top left cell of the destination range (where selection is dropped).  
DestinationRowEndGets the row index of the bottom right cell of the destination range (where selection is dropped).  
OverwriteGets whether the destination range contains data (that is overwritten).  
RowBeginGets the row index of the top left cell of the source range (being dragged).  
RowEndGets the row index of the bottom right cell of the source range (being dragged).  
Remarks

This event is raised by the OnDragDropBlockCompleted method at the completion of the user dragging and dropping a range of cells.

For more details on the individual event arguments, refer to DragDropBlockCompletedEventArgs members.

Example
This example raises the event.
fpSpread1.DragDropBlockCompleted += new FarPoint.Win.Spread.DragDropBlockCompletedEventHandler(fpSpread1DragDropBlockCompleted);


private void fpSpread1DragDropBlockCompleted(object sender, FarPoint.Win.Spread.DragDropBlockCompletedEventArgs e) 
{ 
    fpSpread1.ActiveSheet.Columns[e.ColumnEnd].BackColor = Color.Yellow;
}
Dim eh As FarPoint.Win.Spread.DragDropBlockCompletedEventHandler = AddressOf FpSpread1DragDropBlockCompleted
AddHandler FpSpread1.DragDropBlockCompleted, eh

Private Sub FpSpread1DragDropBlockCompleted(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.DragDropBlockCompletedEventArgs)
Handles FpSpread1.DragDropBlockCompleted
    FpSpread1.ActiveSheet.Columns(e.ColumnEnd).BackColor = Color.Yellow
End Sub
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

FpSpread Class
FpSpread Members
DragDropBlockCompletedEventArgs Class

 

 


Copyright © GrapeCity, inc. All rights reserved.