nca_scroll_line

Scroll Object Functions

Scrolls the specified number of lines.

int nca_scroll_line( LPCSTR scroll, int lines );
scroll The logical name of the scroll.
lines The number of scrolled lines.

The nca_scroll_line function scrolls the specified number of lines. This function can be used for scroll bar and slider objects.

Return Values

Oracle NCA Error Codes

Parameterization

The following argument(s) can be parameterized using standard parameterization: scroll

Example

In the following example, the nca_scroll_line function scrolls down ten values in the Currencies list of values box.

nca_edit_click("GLXJEENT.HEADER.CURRENCY_CODE.0");
nca_button_press("GLXJEENT.TOOLBAR.LIST.0");
nca_scroll_line("Currencies", 10);
nca_lov_select_item("Currencies", "SGD");