strokeJoin

書式

textPathObject.strokeJoin

説明

textPath(テキストパス)の角の形状を示します。以下の表に示すいずれかの値になります。

内容
StrokeJoin.BEVELENDJOINベベル結合
StrokeJoin.ROUNDENDJOINラウンド結合
StrokeJoin.MITERENDJOINマイター結合
var tp=app.activeDocument.textFrames[0].textPath;
alert(tp.strokeJoin);

目次に戻る