書式
textPathObject.strokeJoin
説明
textPath(テキストパス)の角の形状を示します。以下の表に示すいずれかの値になります。
値 | 内容 |
StrokeJoin.BEVELENDJOIN | ベベル結合 |
StrokeJoin.ROUNDENDJOIN | ラウンド結合 |
StrokeJoin.MITERENDJOIN | マイター結合 |
var tp=app.activeDocument.textFrames[0].textPath;
alert(tp.strokeJoin);
目次に戻る