Reply To: Table Row Height > Update Row Properties

#63841
sam-baldus
Member

var d = app.activeDocument, MT= d.stories.everyItem().tables.everyItem().getElements();

for (j = 0; j< MT.length; j++)

for (k = 0; k< MT[j].rows.length; k++) {
row = MT[j].rows[k];
row.minimumHeight = row.height;
row.maximumHeight = row.height;
row.autoGrow = false;
}

This article was last modified on January 3, 2013

Comments (0)

Loading comments...