SeeView Manual

SeeView Statements and Script Symbols
HP NonStop SeeView Manual526355-004
9-7
ACCEPT
This option is similar to the INTO option except that each field received from the
screen is pushed to a separate cache line and is prefixed by the row column
screen location that the data came from. For example, if field DATA came from row
3 column 10, the cache line contains 003 010 DATA. Control characters are
translated to the ? character. The TRACE option is primarily for debugging.
taskid
specifies an arithmetic expression as a valid taskid number. The cache
associated with this taskid is the cache that the ACCEPT statement applies to.
WINDOW
specifies the screen area to be accepted.
WINDOW is the default and implies that the area to be accepted is defined by the
dimensions of the window or menu located at the current buffer address. When
you do not specify a window or menu at the current buffer address, the area to be
accepted is the default value of 1,1 for 80 wide by 24 high.
AREA row [,column [,width [,height ] ] ]
specifies the exact area to be accepted and overrides the default WINDOW option.
AREA defines the ACCEPT region to be the rectangular area whose upper-left
corner is defined by row,column and whose size is defined by width, height.
row
indicates the vertical row or line location.
column
indicates the horizontal column location.
width
defines the width of the area.
height
defines the height of the area.
This example shows the AREA option:
AREA 1,1,5,3 includes fields from:
1,1 .. 1,5 { where r,c represent row,column
2,1 .. 2,5
3,1 .. 3,5
and excludes all fields from:
1,6 .. 1,80
2,6 .. 2,80
3,6 .. to end of screen.