You can control the initial appearance of your Web output
and configure aspects of the applet's user interface by specifying
applet parameters. The applet parameters are generally specified as
follows in the PARAMETERS= option of the ODS statement.
ODS HTML BODY=
HTML-output-file-specification
PARAMETERS=(
“parameter-name1”=“parameter-value1”...
“parameter-nameN”=“parameter-valueN”);
For example:
ods html body="ncpop.htm"
parameters=("DATATIPSTYLE"="STICK"
"ZOOMCONTROLENABLED"="FALSE");
You can specify any
number of parameters in a single PARAMETERS= statement. The parameters
can be specified in any order. Blank spaces separate multiple parameter
specifications. You can also use multiple PARAMETERS= statements within
a given ODS statement. The quotation marks and parentheses are required.
Additional quotation marks are required in the specification of certain
parameter values.