行揃えを指定する

■プログラム説明(ソースコード説明)
 行揃えを指定する段落(paragraph)オブジェクトのjustificationプロパティに表示位置を示すプロパティを設定します。

Justification.CENTER中央揃え(センタリング)
Justification.FULLJUSTIFY均等配置
Justification.FULLJUSTIFYLASTLINECENTER均等配置(最終行中揃え)
Justification.FULLJUSTIFYLASTLINELEFT均等配置(最終行左揃え)
Justification.FULLJUSTIFYLASTLINERIGHT均等配置(最終行右揃え)
Justification.LEFT左揃え
Justification.RIGHT右揃え

■ソースコード
textObj = activeDocument.textFrames.add();
textObj.contents = "Adobe Illustrator CS5";
textObj.paragraphs[0].justification = Justification.RIGHT;


■ポイント
 なし