strokeCornerAdjustment

書式

textFrameObject.strokeCornerAdjustment

説明

線分の角の調整方法を示します。

内容
StrokeCornerAdjustment.DASHES点線の調整
StrokeCornerAdjustment.DASHES_AND_GAPS点線と間隔の調整
StrokeCornerAdjustment.GAPS間隔の調整
StrokeCornerAdjustment.NONEなし
var t=app.activeDocument.textFrames;
try{
    alert(t[0].strokeCornerAdjustment);
}catch(e){}

目次に戻る