In This Topic
Occurs when the cells are moved.
Syntax
'Declaration
Protected Overridable Sub OnMoveCells( _
ByVal As Integer, _
ByVal fromColumn As Integer, _
ByVal As Integer, _
ByVal toColumn As Integer, _
ByVal As Integer, _
ByVal columnCount As Integer _
)
'Usage
Dim instance As SheetView
Dim fromRow As Integer
Dim fromColumn As Integer
Dim toRow As Integer
Dim toColumn As Integer
Dim rowCount As Integer
Dim columnCount As Integer
instance.OnMoveCells(fromRow, fromColumn, toRow, toColumn, rowCount, columnCount)
protected virtual void OnMoveCells(
int ,
int fromColumn,
int ,
int toColumn,
int ,
int columnCount
)
Parameters
- fromRow
- Start row index
- fromColumn
- Start column index
- toRow
- End row index
- toColumn
- End column index
- rowCount
- Number of rows
- columnCount
- Number of columns
See Also