anyItem()

書式

tableObject = tablesObject.anyItem()

説明

anyItem()はいずれかのtableオブジェクトを返します。返されるtableオブジェクトはランダムです。指定できるパラメーターはありません。
var tf=app.activeDocument.textFrames[0];
var t=tf.tables;
alert(t.anyItem().contents);

目次に戻る