Spread Silverlight Documentation
ValidationDragDropBlock Event (SheetView)


GrapeCity.Windows.SpreadSheet.UI Namespace > SheetView Class : ValidationDragDropBlock Event
Occurs when the user drags and drops a range of cells.
Syntax
'Declaration
 
Public Event ValidationDragDropBlock As System.EventHandler(Of ValidationDragDropBlockEventArgs)
'Usage
 
Dim instance As SheetView
Dim handler As System.EventHandler(Of ValidationDragDropBlockEventArgs)
 
AddHandler instance.ValidationDragDropBlock, handler
public event System.EventHandler<ValidationDragDropBlockEventArgs> ValidationDragDropBlock
Event Data

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

PropertyDescription
Gets the column count of the cell range being dragged.  
Gets whether the source range is copied.  
Gets the column index of the top left cell of the source range (range being dragged).  
Gets the row index of the top left cell of the source range (range being dragged).  
Gets or sets whether the event is handled.  
Gets whether the source range is inserted.  
Gets or sets the invalid message.  
Gets or sets whether the value is valid.  
Gets the row count of the cell range being dragged.  
Gets the column index of the bottom right cell of the destination range (where selection is dropped).  
Gets the row index of the top left cell of the destination range (where selection is dropped).  
See Also