レポート時の文字の色を指定する
対応バージョン

3.0a 4.0 4.05 5.0 6.0 7.0
Windows
×
×
×



Macintosh
×
×
×



ポイント
color.temp = new Array("RGB",0,0,i/256);
rep.color = color.temp;
説  明
レポート時の文字の色を指定するにはcolorプロパティにカラー配列を設定します。
サンプル

rep = new Report();
rep.writeText("■レポート");
for (i=1; i<255; i+=16)
{
color.temp = new Array("RGB",0,0,i/256);
rep.color = color.temp;
rep.writeText("●サンプルテキスト");
}
rep.open("report.pdf");

 
■サンプルスクリプトを実行する >> Acrobat で動作確認
補足説明
なし