Spread Windows Forms 12.0 Product Documentation
NumberToCopy Property (DragFillBlockEventArgs)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > DragFillBlockEventArgs Class : NumberToCopy Property
Gets the number of rows or columns being filled.
Syntax
'Declaration
 
Public ReadOnly Property NumberToCopy As Integer
'Usage
 
Dim instance As DragFillBlockEventArgs
Dim value As Integer
 
value = instance.NumberToCopy
public int NumberToCopy {get;}

Property Value

Integer number of rows or columns
Example
private void fpSpread1_DragFillBlock(object sender, FarPoint.Win.Spread.DragFillBlockEventArgs e)
{
    if(e.NumberToCopy > 3)
    {
        e.Cancel = true;
    }
}
Private Sub FpSpread1_DragFillBlock(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.DragFillBlockEventArgs) Handles
FpSpread1.DragFillBlock
    If e.NumberToCopy > 3 Then
        e.Cancel = True
    End If
End Sub
See Also

Reference

DragFillBlockEventArgs Class
DragFillBlockEventArgs Members