opticalMarginAlignment

書式

storyObject.storyPreferences.opticalMarginAlignment

説明

テキストフレームの端にある文字の位置を調整するかどうかを示します。これはStoryパネルのオプティカルマージン揃えに該当します。trueなら調整あり、falseなら調整なしになります。

var t=app.activeDocument.textFrames;
alert(t[0].parentStory.storyPreferences.opticalMarginAlignment);
t[0].parentStory.storyPreferences.opticalMarginAlignment=true;

目次に戻る