Spread Windows Forms 6.0 Product Documentation
DragDropBlockCompleted Event
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > FpSpread Class : DragDropBlockCompleted Event


Glossary Item Box

Occurs at the completion of the user dragging and dropping a range of cells.

Syntax

Visual Basic (Declaration) 
Public Event DragDropBlockCompleted As DragDropBlockCompletedEventHandler
Visual Basic (Usage)Copy Code
Dim instance As FpSpread
Dim handler As DragDropBlockCompletedEventHandler
 
AddHandler instance.DragDropBlockCompleted, handler
C# 
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
Action Gets whether the source range is copied or moved.
ColumnBegin Gets the column index of the top left cell of the source range (being dragged).
ColumnEnd Gets the column index of the bottom right cell of the source range (being dragged).
DataOnly Gets whether data or formatting (or both) is copied or moved.
DestinationColumnBegin Gets the column index of the top left cell of the destination range (where selection is dropped).
DestinationColumnEnd Gets the column index of the bottom right cell of the destination range (where selection is dropped).
DestinationRowBegin Gets the row index of the top left cell of the destination range (where selection is dropped).
DestinationRowEnd Gets the row index of the bottom right cell of the destination range (where selection is dropped).
Overwrite Gets whether the destination range contains data (that is overwritten).
RowBegin Gets the row index of the top left cell of the source range (being dragged).
RowEnd Gets 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.
C#Copy Code
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;
}
Visual BasicCopy Code
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 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

© 2002-2012 ComponentOne, a division of GrapeCity. All Rights Reserved.