Search notes:

SAS: proc gdevice

list

Determine the available device drivers in the SAS/GRAPH installation:
proc gdevice
     catalog=sashelp.devices;
     list;
run;
Github repository about-SAS, path: /programming/proc/gdevice/list.sas

list format

proc gdevice can be queried for more information on a specific device, for example pdf:
proc gdevice
     catalog=sashelp.devices;
     list pdf;
run;
Github repository about-SAS, path: /programming/proc/gdevice/list-format.sas

See also

SAS programming: proc

Index