List the style elements that can be applied in the SAS log file ODS TAGSETS.RTF enaables you to apply a style element to the RTF output. To determine the style elements that you can use, list them by specifying the TABLES_OFF suboption. This information is output to the SAS Log. Notice that you can use different style elements with each statement.


ods tagsets.rtf file="tablesOff.rtf" options(TABLES_OFF='STYLE_ELEMENTS');
proc print data=sashelp.class(obs=1) ;
run;
ods tagsets.rtf text="TEXT is placed in a table by default" ;