CALL "CBL_READ_SCR_CHATTRS" USING screenPosition                                     characterBuffer                                    attributeBuffer                                    stringLength                             GIVING returnCode  | 
screenPosition  | Group Item  |  Group item is defined as follows: 01  screenPosition.     03  rowNumber      PIC X COMP-X.     03  columnNumber   PIC X COMP-X. It specifies the screen position at which to start reading. The top left corner is row 0, column 0.   | 
characterBuffer  | PIC X(n)  | Returns the characters read from the screen. It must be at least the length specified by stringLength. Positions in it beyond that length are unchanged.  | 
attributeBuffer  | PIC X(n)  | On exit, this data item contains the attributes read from the screen. It must be at least the length specified by stringLength. Positions in the data item beyond that length are unchanged.  | 
stringLength  | PIC XX COMP-X  | On entry, contains the length of the string to read. On exit, contains the length of the string read when the end of the screen is reached   | 
1  | Operation successful.  | 
0  | Operation failed.  |