NAME
SCREEN Function
SYNOPSIS
SCREEN (row%,column% [,colorflag%])
o row% The row coordinate of a character.
o column% The column coordinate of a character.
o colorflag% A value (0 or 1) that specifies what is returned.
Value Returns
-------------- --------------------------------
0 (or omitted) The character's ASCII code.
1 The character's color attribute.
DESCRIPTION
Returns the ASCII value or color attribute of a character at a specified
screen location.
Example:
CLS
PRINT "Hello"
PRINT "The ASCII value of character at 1,1 is"; SCREEN(1, 1)
SEE ALSO
POINT SCREEN Statement ASCII Color Attributes