item()
書式
tableObject =
tablesObject
.item(
index
)
説明
item()は指定したインデックス番号のtableオブジェクトを返します。
var tf=app.activeDocument.textFrames[0]; var t=tf.tables; alert(t.item(2).contents);
目次に戻る