strokeCap
書式
textPathObject
.strokeCap
説明
textPath(テキストパス)の線端の形状を示します。以下の表に示すいずれかの値になります。
値
内容
StrokeCap.BUTTENDCAP
バット線端
StrokeCap.ROUNDENDCAP
丸型線端
StrokeCap.PROJECTINGENDCAP
突出線端
var tp=app.activeDocument.textFrames[0].textPath; alert(tp.strokeCap);
目次に戻る