contents

書式

tableObject.contents

説明

contentsプロパティには表内のすべての文字がセル単位で配列として格納されています。
var tf=app.activeDocument.textFrames[0];
var t=tf.tables[0];
alert(t.contents);

目次に戻る