Date: Fri, 8 Aug 2003 08:15:32 -0400
Reply-To: "Fehd, Ronald J. (PHPPO)" <rjf2@CDC.GOV>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Fehd, Ronald J. (PHPPO)" <rjf2@CDC.GOV>
Subject: Re: Obtaining Current Paper Size Dimensions
Content-Type: text/plain
> From: Kevin Myers [mailto:WHMyers@CABLEONE.NET]
> Does anyone out there know of a way to obtain the dimensions
> of the output page size that is currently specified within SAS?
OptVar may be fetched with this statement:
%Let PaperSize = %sysfunc(getoption(PaperSize));
%put PaperSize<&PaperSize.>;
see also:
PROC Options group= ODSprint ;run;
Ron Fehd the macro maven CDC Atlanta GA USA RJF2@cdc.gov
RTFO: I'm an engineer, I don't get paid to know,
I get paid to know where to look it up.
Read the Finite Options.
>
|