QDEVICE Procedure

Default: If you do not specify a report to create, a printer, or a device, the procedure generates a GENERAL report for the default display device if you are running SAS using the windowing environment, or the default universal printer in other modes.
Note: You can specify more than one DEVICE, PRINTER, or VAR statement. Statements are processed in the order in which they are specified.

Syntax

PROC QDEVICE
<REPORT = GENERAL | FONT | DEVOPTION | LINESTYLE | RECTANGLE | SYMBOL>
<OUT=SAS-data-set>
<DEVLOC = GDEVICE0...GDEVICE9 | SASHELP>
<REGISTRY = SASHELP | SASUSER>
<SUPPORT = YES | NO | ALL>
<UNITS = IN | CM>;
DEVICE device-name-1 <...device-name-n>
<_ALL_> <_HTML_> <_LISTING_> <_RTF_>;
PRINTER printer-name-1 <...printer-name-n>
<_ALL_> <_PCL_> <_PDF_> <_PRINTER_> <_PS_>;
VAR variable-1 <...variable-n>;

Table of Procedure Tasks

Statement Task Example
PROC QDEVICE Statement Specifies an (optional) output data set, which report to generate, which locations to search, whether to list supported or non-supported features, and sizing information Ex. 1, Ex. 2, Ex. 3, Ex. 4, Ex. 5, Ex. 6
DEVICE Statement Specify which SAS/GRAPH devices to generate a report for Ex. 2
PRINTER Statement Specify which universal printers to generate a report for Ex. 6, Ex. 3
VAR Statement Specify the information (variables) to include in the generated reports Ex. 5