Spread Windows Forms 17
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / DragFillBlockEventArgs Class / DragFillBlockEventArgs Constructor / DragFillBlockEventArgs Constructor(SpreadView,Int32,Int32,Int32,Int32,Int32,FillDirection,Boolean,Boolean)
View from which to make a selection
Row index of the top left cell of the range being used for the fill
Column index of the top left cell of the range being used for the fill
Row index of the bottom right cell of the block range used for the fill
Column index of the bottom right cell of the range being used for the fill
Number of rows or columns being filled
Direction of the fill
Data only flag
Whether to cancel the fill


In This Topic
    DragFillBlockEventArgs Constructor(SpreadView,Int32,Int32,Int32,Int32,Int32,FillDirection,Boolean,Boolean)
    In This Topic
    Creates a new object with the DragFillBlock event arguments.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal view As SpreadView, _
       ByVal rowBegin As Integer, _
       ByVal columnBegin As Integer, _
       ByVal rowEnd As Integer, _
       ByVal columnEnd As Integer, _
       ByVal numberToCopy As Integer, _
       ByVal direction As FillDirection, _
       ByVal dataOnly As Boolean, _
       ByVal cancel As Boolean _
    )
    'Usage
     
    
    Dim view As SpreadView
    Dim rowBegin As Integer
    Dim columnBegin As Integer
    Dim rowEnd As Integer
    Dim columnEnd As Integer
    Dim numberToCopy As Integer
    Dim direction As FillDirection
    Dim dataOnly As Boolean
    Dim cancel As Boolean
     
    Dim instance As New DragFillBlockEventArgs(view, rowBegin, columnBegin, rowEnd, columnEnd, numberToCopy, direction, dataOnly, cancel)

    Parameters

    view
    View from which to make a selection
    rowBegin
    Row index of the top left cell of the range being used for the fill
    columnBegin
    Column index of the top left cell of the range being used for the fill
    rowEnd
    Row index of the bottom right cell of the block range used for the fill
    columnEnd
    Column index of the bottom right cell of the range being used for the fill
    numberToCopy
    Number of rows or columns being filled
    direction
    Direction of the fill
    dataOnly
    Data only flag
    cancel
    Whether to cancel the fill
    See Also