Package ilcd
Class Memory

Public Method getViewScreenParameters

static ScreenParameters getViewScreenParameters()

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Returns Description
static ScreenParameters index of the currently active view screen

The getViewScreenParameters() method returns the parameters of the currently active view screen.

Note

Example

ScreenParameters scrPara = Memory.getViewScreenParameters();

int index                = scrPara.getScreenIndex();

int viewportOrientation  = scrPara.getViewportOrientation();

int x                    = scrPara.getX();

Alternatively a value can be optained with a single call:

int x = Memory.getViewScreenParameters().getX();

See also:

Memory
Memory.setViewScreen(int)
Memory.setDrawScreen(int)
Memory.getDrawScreenParameters()