DragMoveEventArgs Constructor(SpreadView,Int32,Int32,Boolean,Boolean)
In This Topic
Creates a new object with the DragMove event arguments.
Syntax
'Declaration
Public Function New( _
ByVal As SpreadView, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Boolean, _
ByVal As Boolean _
)
'Usage
Dim view As SpreadView
Dim index As Integer
Dim count As Integer
Dim moveContent As Boolean
Dim cancel As Boolean
Dim instance As New DragMoveEventArgs(view, index, count, moveContent, cancel)
public DragMoveEventArgs(
SpreadView ,
int ,
int ,
bool ,
bool
)
Parameters
- view
- SpreadView view
- index
- Column or row index of the drag
- count
- Number of columns or rows being moved
- moveContent
- Whether to move content in models without re-mapping the indexes
- cancel
- Whether to cancel the drag operation
See Also