Avery Dennison 6035 Programmer Manual Rev.CA 6/01 User Manual

Page 143

Advertising
background image

4-102 Programmer’s Manual

v i d P u t C u r s o r

Description

Moves the cursor for the specified display page to the specified
row and column.

Syntax

void far vidPutCursor(unsigned short usRow,

unsigned short usCol,

short sPage);

Parameters

usRow

Row. For 4-row/33-key printers, values are 0-3.
For 8-row/48-key printers, values are 0-7.

usCol

Column. Values are 0-19.

usPage

Display page. For 4-row/33-key printers, values
are 0-3. For 8-row/48-key printers, values are 0-1.


Return Values

None

Example

#include <stdio.h>

#include "mmsultra.h"

void main(void)

{

vidSetPage(0);

// Set the page

vidScroll(0, 0, 3, 19, 0, 0x07);

// Clear the screen

vidPutCursor(0, 0, 0);

// Move the cursor

printf("X\n");

// Print an X

printf("The 'X' is at\ncolumn 0, row 0");

// Display message

}

Advertising