レポート時の逆インデント(字下げ)を指定する |
||||||||||||||||||||||
対応バージョン |
|
|||||||||||||||||||||
ポイント |
rep.outdent(i*10); |
|||||||||||||||||||||
説 明 |
レポート時の逆インデント(左側に字下げ)を指定するにはoutdent()メソッドを使います。引数はインデントする値(単位はポイント)になります。 |
|||||||||||||||||||||
サンプル |
rep = new Report(); rep.writeText("■レポート"); rep.indent(50); for (i=0; i<4; i++) { rep.outdent(i*10); rep.writeText(i); } rep.open("report.pdf"); |
|||||||||||||||||||||
|
■サンプルスクリプトを実行する >> Acrobat で動作確認 |
|||||||||||||||||||||
補足説明 |
なし |