Chapter Contents

Previous

Next
DEVICE

DEVICE



Specifies an output device driver for SAS/GRAPH software

Alias: -DEV
Default: none
Valid in: configuration file, SAS invocation, OPTIONS statement, SAS System Options window
Windows specifics: Valid values for device-driver-specification; default value


Syntax
Details
See Also

Syntax

-DEVICE device-driver-specification
DEVICE=device-driver-specification

device-driver-specification
specifies the name of a terminal device driver.


Details

The DEVICE system option specifies a terminal device driver for SAS/GRAPH software.

To see the list of available device drivers under Windows, you can use the GDEVICE procedure. If you want to use PROC GDEVICE interactively, submit the following code:

proc gdevice catalog=sashelp.devices;
run; 
quit;
A list is displayed that you can scroll through.

If you want to write the device list to the SAS log, use the following code:

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 SAS Support Consultant for more information.

See Also


Chapter Contents

Previous

Next

Top of Page

Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.