storyOrientation

書式

storyObject.storyPreferences.storyOrientation

説明

テキストフレームの文字組みの方向(横書き/縦書き)を示します。

内容
StoryHorizontalOrVertical.HORIZONTAL横書き
StoryHorizontalOrVertical.VERTICAL縦書き
StoryHorizontalOrVertical.UNKNOWN未設定
var t=app.activeDocument.textFrames;
alert(t[0].parentStory.storyPreferences.storyOrientation);

目次に戻る