2015年5月11日月曜日

レポート作成インターフェイス(RWI)入門8


RWIでテキストを配置するメソッドを紹介。

 FORMAT_TEXT( data: "テキスト)



このメソッドと、以前紹介したREGIONメソッドを組み合わせれば、好きな位置に好きなテキストを配置できます。


ods html close;
ods pdf file="出力するファイルのパス\TEST.pdf";

data _NULL_;
  dcl odsout ob();
  ob.layout_absolute();

     ob.region( x:'1cm',  y:'2cm',  width:'8cm');
     ob.format_text( data:"aaaaaaaaaaa" );

     ob.region( x:'5cm',  y:'3cm',  width:'8cm');
     ob.format_text( data:"bbbbbbbbbb" );

  ob.layout_end();

run;

ods pdf close;
ods html;

TEST.pdf


0 件のコメント:

コメントを投稿