Previous Page | Next Page

System Options under z/OS

DEVICE= System Option: z/OS



Specifies a device driver for graphics output for SAS/GRAPH software.
Default: none
Valid in: configuration file, SAS invocation, OPTIONS statement, OPTIONS window
Category: Graphics: GRAPHICS
PROC OPTIONS GROUP= GRAPHICS
z/OS specifics: device-driver-name
See: DEVICE= System Option in SAS Language Reference: Dictionary

Syntax
Details
See Also

Syntax

DEVICE=device-driver-name

device-driver-name

specifies the name of a terminal device driver.


Details

To see a list of device drivers that are available, use the GDEVICE procedure. If you are in the windowing environment, submit the following statements:

proc gdevice catalog=sashelp.devices;
run;

If you are running in interactive line mode, noninteractive mode, or batch mode, submit the following statements:

proc gdevice catalog=sashelp.devices nofs;
list _all_;
run;


See Also

Previous Page | Next Page | Top of Page