Intermec 5055 Reference Guide

Page of 216
im_set_cursor_xy
5-65
5
im_set_cursor_xy
Purpose:
This function sets the current cursor position.
Syntax:
#include "im5055.h"
IM_STATUS im_set_cursor_xy
    (IM_USHORT 
rowNum
,
    IM_USHORT 
colNum
);
IN Parameters:
rowNum    Vertical position. The top of the display is 0.
colNum    Horizontal position. The left edge of the display is 0.
OUT Parameters:
None.
Return Value:
This function returns one of these codes:
IM_SUCCESS    Success.
IM_X_RANGE    colNum value out of range, cursor moved to right edge.
IM_Y_RANGE    rowNum value out of range, cursor moved to bottom.
IM_BOTH_RANGE    Both colNum and rowNum values out of range, cursor moved to
lower right corner.
Example
See example for im_receive_field.