GrapeCity.Xaml.SpreadSheet.UI
DragFillBlockCompleted Event (GcSpreadSheet)
Example 


GrapeCity.Xaml.SpreadSheet.UI Namespace > GcSpreadSheet Class : DragFillBlockCompleted Event
Occurs at the completion of the user dragging to fill a range of cells.
Syntax
'Declaration
 
Public Event DragFillBlockCompleted As EventHandler(Of DragFillBlockCompletedEventArgs)
'Usage
 
Dim instance As GcSpreadSheet
Dim handler As EventHandler(Of DragFillBlockCompletedEventArgs)
 
AddHandler instance.DragFillBlockCompleted, handler
public event 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.  
Example
This example uses the DragFillBlockCompleted event.
gcSpreadSheet1.CanUserDragFill = true;

private void gcSpreadSheet1_DragFillBlock(object sender, GrapeCity.Xaml.SpreadSheet.UI.DragFillBlockEventArgs e)
        {
           listBox1.Items.Add(e.AutoFillType.ToString());
           listBox1.Items.Add(e.FillDirection.ToString());
           listBox1.Items.Add(e.FillRange.RowCount.ToString());
        }

private void gcSpreadSheet1_DragFillBlockCompleted(object sender, GrapeCity.Xaml.SpreadSheet.UI.DragFillBlockCompletedEventArgs e)
        {
            listBox1.Items.Add(e.AutoFillType.ToString());
            listBox1.Items.Add(e.FillDirection.ToString());
            listBox1.Items.Add(e.FillRange.RowCount.ToString());
        }
GcSpreadSheet1.CanUserDragFill = True
    
Private Sub gcSpreadSheet1_DragFillBlock(sender As Object, e As GrapeCity.Xaml.SpreadSheet.UI.DragFillBlockEventArgs) Handles gcSpreadSheet1.DragFillBlock
        ListBox1.Items.Add(e.AutoFillType.ToString())
        ListBox1.Items.Add(e.FillDirection.ToString())
        ListBox1.Items.Add(e.FillRange.RowCount.ToString())
    End Sub

    Private Sub gcSpreadSheet1_DragFillBlockCompleted(sender As Object, e As GrapeCity.Xaml.SpreadSheet.UI.DragFillBlockCompletedEventArgs) Handles gcSpreadSheet1.DragFillBlockCompleted
        ListBox1.Items.Add(e.AutoFillType.ToString())
        ListBox1.Items.Add(e.FillDirection.ToString())
        ListBox1.Items.Add(e.FillRange.RowCount.ToString())
    End Sub
See Also