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