Previous Page | Next Page

SAS System Options under Windows

DEVICE System Option: Windows



Specifies a device driver for graphics output for SAS/GRAPH software.
Default: none
Valid in: configuration file, SAS invocation, OPTIONS statement, SAS System Options window
Alias: -DEV
Category: Graphics: Driver settings
PROC OPTIONS GROUP= GRAPHICS
Windows specifics: Valid values for device-driver-name; default value
See: DEVICE System Option in SAS Language Reference: Dictionary

Syntax
Details
See Also

Syntax

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

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 Windows, you can use the GDEVICE procedure. If you are using the SAS windowing environment, submit the following statements:

proc gdevice catalog=sashelp.devices;
run; 
quit;

If you want to write the device list to the SAS log, submit the following statements:

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

Your site might have defined additional device catalogs referenced by the GDEVICE0 libref. See your on-site SAS support personnel for more information.


See Also

Previous Page | Next Page | Top of Page