count()
書式
number =
tablesObject
.count()
説明
テキストフレーム内にあるtableオブジェクト(表)の総数を返します。lengthと同じ結果になります。
var tf=app.activeDocument.textFrames[0]; var t=tf.tables; alert(t.count());
目次に戻る