DragFillBlockCompletedEventArgs Constructor
In This Topic
Creates a new object with the DragDropBlockCompleted event arguments.
Syntax
'Declaration
Public Function New( _
ByVal As SpreadView, _
ByVal As Integer, _
ByVal columnBegin As Integer, _
ByVal As Integer, _
ByVal columnEnd As Integer, _
ByVal As Integer, _
ByVal As FillDirection, _
ByVal 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 instance As New DragFillBlockCompletedEventArgs(view, rowBegin, columnBegin, rowEnd, columnEnd, numberToCopy, direction, dataOnly)
public DragFillBlockCompletedEventArgs(
SpreadView ,
int ,
int columnBegin,
int ,
int columnEnd,
int ,
FillDirection ,
bool
)
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 range being 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
- Whether only data is used
See Also