Spread Windows Forms 12.0 Product Documentation
DestinationRowEnd Property (DragDropBlockCompletedEventArgs)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > DragDropBlockCompletedEventArgs Class : DestinationRowEnd Property
Gets the row index of the bottom right cell of the destination range (where selection is dropped).
Syntax
'Declaration
 
Public ReadOnly Property DestinationRowEnd As Integer
'Usage
 
Dim instance As DragDropBlockCompletedEventArgs
Dim value As Integer
 
value = instance.DestinationRowEnd
public int DestinationRowEnd {get;}

Property Value

Integer index of the destination ending row
Example
This example constructs a handler for the DragDropBlockCompleted event.
fpSpread1.DragDropBlockCompleted += new FarPoint.Win.Spread.DragDropBlockCompletedEventHandler(fpSpread1DragDropBlockCompleted);


private void fpSpread1DragDropBlockCompleted(object sender, FarPoint.Win.Spread.DragDropBlockCompletedEventArgs e) 
{
    fpSpread1.ActiveSheet.Rows[e.DestinationRowEnd].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.Rows(e.DestinationRowEnd).BackColor = Color.Yellow
End Sub
See Also

Reference

DragDropBlockCompletedEventArgs Class
DragDropBlockCompletedEventArgs Members