count()

書式

number = documents.count()

説明

count()はDocumentオブジェクトの総数を返します。count()はlengthと同じ値になります。
var d=app.documents;
alert(d.count());

目次に戻る