SASUnit Examples  Version 1.5.0
_render_iconcolumn.sas
Go to the documentation of this file.
1 
23 %macro _render_iconcolumn (i_sourceColumn=
24  ,o_html=0
25  ,o_targetColumn=
26  );
27 
28  %local l_pictNameFmt;
29 
30  %let l_pictNameFmt=PictName.;
31  %if (&o_html.) %then %do;
32  %let l_pictNameFmt=PictNameHTML.;
33  %end;
34 
35  &o_targetColumn. = '^{style [postimage="' !! trim(put (&i_sourceColumn., &l_pictNameFmt.)) !! '" flyover="' !! trim(put (&i_sourceColumn., PictDesc.)) !! '" fontsize=0pt]' !! &i_sourceColumn !! '}';
36 %mend _render_iconcolumn;