行揃えを指定する

解  説
行揃えを指定するにはjustificationプロパティに以下の値を入れます。

Justification.leftAlign 左揃え
Justification.centerAlign 中揃え
Justification.rightAlign 右揃え
Justification.leftJustified 均等配置左揃え
Justification.rightJustified 均等配置中揃え
Justification.centerJustified 均等配置右揃え
Justification.fullyJustified 両端揃え

コード
docObj = app.documents.add();
textFrame = docObj.pages.item(0).textFrames.add();
textFrame.geometricBounds = [0,0, 290,190];
textFrame.contents = "表示位置を指定します";
textFrame.texts.item(0).justification = Justification.centerAlign;


■サンプルをダウンロードする >>.zip