SysTextScreenRead Function -- Syntax and Examples

SysTextScreenRead(row, col[, length])

SysTextScreenRead(0,0)

reads the entire screen

SysTextScreenRead(2,0,80)

reads the second line on the screen

Screen = SysTextScreenRead(0,0)

assigns the entire contents of the screen to the variable Screen

Line = SysTextScreenRead(2,0,80)

assigns the contents of the second line on the screen to the variable Line

Next