How do I list or delete HTML styles?
Nico Chart_21517
Altair Employee
If you have created a new default style but wish to return to the default one shipped with the software then you can use the TEMPLATE procedure with the DELETE statement. For example,
PROC OPTIONS OPTION=SASUSER; RUN;
PROC TEMPLATE;
title "List the current styles before deletion";
list styles;
run;
PROC TEMPLATE;
delete styles.default;
run;
PROC TEMPLATE;
title "List the current styles after deletion";
list styles;
run;
0