reverseIndex method
void
reverseIndex()
Implementation
void reverseIndex() {
if (_cursorY == _marginTop) {
areaScrollDown(1);
} else if (_cursorY > 0) {
moveCursorY(-1);
}
}
void reverseIndex() {
if (_cursorY == _marginTop) {
areaScrollDown(1);
} else if (_cursorY > 0) {
moveCursorY(-1);
}
}