Package ilcd
Class Control

Public Method incrementDecrementRowAddress

static void incrementDecrementRowAddress(int yInc)

Throws:

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Parameter Range Description
yInc between the positive and negative boundary values
see below
amount to increment or decrement the row address

positive boundary value of yInc = (display height) - (current cursor position in y direction) - 1
negative boundary value of yInc = -(current cursor position in y direction)

Increments (positive value) or decrements (negative value) the row address (vertical cursor position) in pixel units relative to the current cursor position.

Example

Control.incrementDecrementRowAddress(40);

This example will move the cursor position 40 pixels down.

See also:

Control.setCursorPosition(int, int)
Control.setRelativeCursorPosition(int, int)
Control.setRowAddress(int)
Control.setColumnAddress(int)
Control.incrementDecrementColumnAddress(int)