followShapeMode

書式

directionalFeatherSettingObject.followShapeMode

説明

followShapeModeはシェイプの種類を示します。以下の3種類になります。

内容
FollowShapeModeOptions.ALL_EDGESすべてのエッジ
FollowShapeModeOptions.LEADING_EDGEリーディングエッジ
FollowShapeModeOptions.NONE先頭エッジのみ
var t=app.activeDocument.textFrames;
var fx=t[0].contentTransparencySettings.directionalFeatherSettings;
alert(fx.followShapeMode);

目次に戻る