nextItem()

書式

tableObject = tablesObject.nextItem(tableObject)

説明

nextItem()はパラメーターで指定された次のtableオブジェクトを返します。
var tf=app.activeDocument.textFrames[0];
var t=tf.tables;
alert(t.nextItem(t[2]).contents);

目次に戻る