Private Sub FpSpread1_DragDropBlock(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.DragDropBlockEventArgs) Handles
FpSpread1.DragDropBlock
If e.Action = 0 Then
TextBox1.Text = "The selection was moved"
ElseIf e.Action = 1 Then
TextBox1.Text = "The selection was copied"
End If
End Sub