itemByName()

書式

tableObject = tablesObject.itemByName(name)

説明

itemByName()はパラメーターで指定されたtableオブジェクトを返します。表の名前はnameまたはlabelプロパティに設定することで参照することができます。
var tf=app.activeDocument.textFrames[0];
var t=tf.tables;
t.item(0).name="売り上げ表";
alert(t.itemByName("売り上げ表").contents);

目次に戻る