singleWordJustification

書式

paragraphAttributes.singleWordJustification

説明

1文字揃えの場合の行揃えの方法を示します。以下の値になります。

内容
Justification.CENTER中央揃え(センタリング)
Justification.LEFT左揃え
Justification.RIGHT右揃え
Justification.FULLJUSTIFY両端揃え
Justification.FULLJUSTIFYLASTLINECENTER均等配置(中央揃え)
Justification.FULLJUSTIFYLASTLINELEFT均等配置(左揃え)
Justification.FULLJUSTIFYLASTLINERIGHT均等配置(右揃え)

var aType=app.activeDocument.textFrames[0].paragraphs[0].paragraphAttributes.singleWordJustification;
alert(aType);

目次に戻る