columns

書式

tableObject.columns

説明

columnsは表の列方向のcellオブジェクトが格納されているコレクションです。
var tf=app.activeDocument.textFrames[0];
var t=tf.tables[0];
alert(t.columns.length);

目次に戻る