Spread Silverlight Documentation
DragFillBlockCompleted Event (SheetView)


GrapeCity.Windows.SpreadSheet.UI Namespace > SheetView Class : DragFillBlockCompleted Event
Occurs at the completion of the user dragging to fill a range of cells.
Syntax
'Declaration
 
Public Event DragFillBlockCompleted As System.EventHandler(Of DragFillBlockCompletedEventArgs)
'Usage
 
Dim instance As SheetView
Dim handler As System.EventHandler(Of DragFillBlockCompletedEventArgs)
 
AddHandler instance.DragFillBlockCompleted, handler
public event System.EventHandler<DragFillBlockCompletedEventArgs> DragFillBlockCompleted
Event Data

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

PropertyDescription
Gets the AutoFillType value used for the fill operation.  
Gets the direction of the fill.  
Gets the range used for the fill operation.  
See Also