verticalLayoutConstraints

書式

textFrameObject.verticalLayoutConstraints

説明

垂直方向のレイアウト方法を示します。レイアウト方法は3つの配列要素で構成されており、「上マージン」「高さ」「下マージン」の順番になります。

内容
DimensionsConstraints.FIXED_DIMENSION固定
DimensionsConstraints.FLEXIBLE_DIMENSION相対/フレキシブル
var t=app.activeDocument.textFrames;
alert(t[0].verticalLayoutConstraints);

目次に戻る