flipItem

書式

textFrameObject.flipItem(given, around)

説明

textFrameオブジェクトを反転させます。最初のパラメーターには以下の反転方法を指定します。

プロパティ値内容
Flip.BOTH 両方
Flip.HORIZONTAL水平
Flip.HORIZONTAL_AND_VERTICAL水平および垂直
Flip.NONEなし
Flip.VERTICAL垂直

2番目のパラメーターは反転の基準位置を指定します。以下のプロパティまたは[x,y]形式の配列で指定します。座標値は数値のみ、単位付きのどちらでも指定できます。

プロパティ値内容
AnchorPoint.0000000下辺の中央
AnchorPoint.0000000左下角
AnchorPoint.0000000右下角
AnchorPoint.0000000中心/センター
AnchorPoint.0000000左辺の中央
AnchorPoint.0000000右辺の中央
AnchorPoint.0000000上辺の中央
AnchorPoint.0000000左上角
AnchorPoint.0000000右上角
var t=app.activeDocument.textFrames;
t[0].flipItem(Flip.HORIZONTAL, AnchorPoint.CENTER_ANCHOR);
t[1].flipItem(Flip.BOTH,  ["70mm","50mm"]);

目次に戻る