[]
Creates a new object with the DragMove event arguments.
public DragMoveEventArgs(SpreadView view, int index, bool moveContent, bool cancel)
Public Sub New(view As SpreadView, index As Integer, moveContent As Boolean, cancel As Boolean)
Type | Name | Description |
---|---|---|
SpreadView | view | SpreadView view |
int | index | Column or row index of the drag |
bool | moveContent | Whether to move content in models without re-mapping the indexes |
bool | cancel | Whether to cancel the drag operation |
Creates a new object with the DragMove event arguments.
public DragMoveEventArgs(SpreadView view, int index, int count, bool moveContent, bool cancel)
Public Sub New(view As SpreadView, index As Integer, count As Integer, moveContent As Boolean, cancel As Boolean)
Type | Name | Description |
---|---|---|
SpreadView | view | SpreadView view |
int | index | Column or row index of the drag |
int | count | Number of columns or rows being moved |
bool | moveContent | Whether to move content in models without re-mapping the indexes |
bool | cancel | Whether to cancel the drag operation |