qb45advr.hlp (Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
SCREEN Function Details
  QuickSCREEN      Details      Example      Contents      Index
──────────────────────────────────────────────────────────────────────────────
SCREEN Function Details
 
Syntax
  SCREEN (row,column[,colorflag])
 
  Argument    Description
  row         The row number of the screen location. The row is a
              numeric expression that evaluates to an unsigned
              integer.
  column      The column number of the screen location. The column
              is a numeric expression that evaluates to an unsigned
              integer.
  colorflag   A numeric expression. When colorflag is nonzero, SCREEN
              returns the number of the color at the screen location.
              If the colorflag is zero or absent, the ASCII code of
              the character at the location is returned as an integer.
 
If the character at (10,10) is A, in the following examples, then the
function would return 65, the ASCII code for A:
 
  X=SCREEN(10,10)