Chapter Contents |
Previous |
Next |
WREGION |
Category: | Window |
Syntax | |
Details | |
Examples | |
See Also |
Syntax |
CALL WREGION(start-row,start-col,num-rows,num-cols,options); |
Type: Numeric
Type: Numeric
Type: Numeric
Type: Numeric
''
'CMDLINE'
'HSBAR'
'INNERSIZE'
'PMENU'
'VSBAR'
Type: Character
Details |
The size of the next window depends on whether it has a command area, a pmenu, and scroll bars. (The command area includes the message line.) By default, WREGION assumes that the next window will have all of these attributes. You can use options to change this assumption. Note that options does not cause the next window to have these attributes. Rather, it helps WREGION determine the correct size.
'INNERSIZE' specifies that the values of num-rows and num-cols will control the interior size of the window. Normally, the num-rows and num-cols control the exterior size of the window (including the borders).
WREGION does not affect the size of subsequent FSEDIT windows that are opened by using CALL FSEDIT. The function cannot resize windows when a SAS/AF or FSEDIT application is called with the NOBORDER option.
Examples |
call wregion(1,1,4,80,''); call putlegend (1,'This is legend line 1','yellow','none'); call putlegend (2,'This is legend line 2','yellow','none'); call legend ('mylegend window name','','white','reverse');
call wregion(1,1,20,80,'cmdline'); call display('another.program',a,b,c);
See Also |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.