count()

書式

number = graphicLinesObject.count()

説明

count()メソッドはgraphicLineオブジェクトの総数を返します。count()はlengthと同じ値になります。
var g=app.activeDocument.graphicLines;
alert(g.count());

目次に戻る