全てのしおりのテキストをPDFとして書き出す

説明

全てのしおりのテキスト(しおりの名前)をPDFとして書き出すにはreportオブジェクトを生成しwriteText()メソッドを使います。

サンプル [実行する]

rep = new Report();
for (i=0; i<bookmarkRoot.children.length; i++)
{
rep.writeText(bookmarkRoot.children[i].name);
}
rep.open("report.pdf");