値 | 内容 |
---|---|
TextOrientation.HORIZONTAL | 水平 |
TextOrientation.VERTICAL | 垂直 |
1 2 3 4 5 6 7 8 | var rect = activeDocument.pathItems.rectangle(0, 200, 100, 60); var txtObj = activeDocument.textFrames.areaText( rect, TextOrientation.VERTICAL, undefined, true ); txtObj.contents = "サンプルテキスト。アドビイラストレーターをスクリプトで自動化" ; |