GrapeCity.Xaml.SpreadSheet.UI Namespace > DragFillBlockCompletedEventArgs Class : AutoFillType Property |
'Declaration Public ReadOnly Property AutoFillType As AutoFillType
'Usage Dim instance As DragFillBlockCompletedEventArgs Dim value As AutoFillType value = instance.AutoFillType
public AutoFillType AutoFillType {get;}
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
Target Platforms: Windows Server 2012, Windows RT