SeeView Manual

SeeView Statements and Script Symbols
HP NonStop SeeView Manual526355-004
9-80
PLOT
PLOT
The PLOT statement defines the current screen buffer address. The buffer address
indicates where the output data from statements appears on the current page of the
screen.
column-exp
indicates the horizontal column location. Columns range from 0 (zero) through 79,
left to right.
row-exp
indicates the vertical row or line location. Rows range from 0 (zero) through 23, top
to bottom.
Considerations
The upper left corner of the screen is PLOT 0,0. The lower right is set at
PLOT 79,23.
The PLOT and LINE statements provide essentially the same functions but use
different coordinate systems.
IF #FKEY=16 then return;
MSG (r) #name &" "& #addr &" "& #ph;
{-----------------------------------------}
{ Note: Add code here to update a database,
{ or save person data to a cache.
{-----------------------------------------}
?SECT main
{---------}
{ GetPerson data until F16 is pressed.
{------------------------------------}
MSG "Please enter person data. Escape-F16.";
WHILE (#FKEY<>16) DO BEGIN
CALL GetPerson;
END;
CLEARW;
PLOT column-exp , row-exp