In This Topic
Moves the active cell base on the specified direction.
Syntax
'Declaration
Public Sub MoveActiveCell( _
ByVal As Integer, _
Optional ByVal As Boolean, _
Optional ByVal As Boolean, _
Optional ByVal As Boolean _
)
'Usage
Dim instance As WorksheetView
Dim direction As Integer
Dim detectTable As Boolean
Dim isShownInvalidCells As Boolean
Dim notifyUI As Boolean
instance.MoveActiveCell(direction, detectTable, isShownInvalidCells, notifyUI)
public void MoveActiveCell(
int ,
bool ,
bool ,
bool
)
Parameters
- direction
- An integer value indicates the moving direction: 0 - Moves closewise 1 - Moves down 2 - Moves up 3 - Moves left 4 - Moves right
- detectTable
true
if moving active cell take care of table; otherwise, false
.- isShownInvalidCells
- notifyUI
See Also