DEVICE System Option: UNIX

Specifies a device driver for graphics output for SAS/GRAPH software.
Valid in: configuration file, SAS invocation, OPTIONS statement, SAS System Options window, SASV9_OPTIONS environment variable, GOPTIONS statement
Category: Graphics: Driver settings
PROC OPTIONS GROUP= GRAPHICS
Default: none
UNIX specifics: valid device drivers
See: DEVICE= System Option in SAS System Options: Reference

Syntax

-DEVICE device-driver-name
DEVICE=device-driver-name

Required Argument

device-driver-name
specifies the name of a device driver for graphics output.

Details

To see the list of device drivers that are available under UNIX, you can use the GDEVICE procedure. If you are using the SAS windowing environment, submit the following statements:
proc gdevice catalog=sashelp.devices;
run;
If you are running SAS in interactive line mode or batch mode, submit the following statements:
proc gdevice catalog=sashelp.devices nofs;
   list _all_;
run;

See Also

SAS/GRAPH: Reference