Spread WPF 17
GrapeCity.Windows.SpreadSheet.UI Namespace / GcSpreadSheet Class / DragFillBlock Event


In This Topic
    DragFillBlock Event (GcSpreadSheet)
    In This Topic
    Occurs when the user drags to fill a range of cells.
    Syntax
    'Declaration
     
    Public Event DragFillBlock As EventHandler(Of DragFillBlockEventArgs)
    'Usage
     
    Dim instance As GcSpreadSheet
    Dim handler As EventHandler(Of DragFillBlockEventArgs)
     
    AddHandler instance.DragFillBlock, handler
    public event EventHandler<DragFillBlockEventArgs> DragFillBlock
    Event Data

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

    PropertyDescription
    Gets the AutoFillType value used for the fill operation.  
    (Inherited from System.ComponentModel.CancelEventArgs)
    Gets the direction of the fill.  
    Gets the range used for the fill operation.  
    See Also