レポート時の文字の色を指定する
説明
レポート時の文字の色を指定するには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");