G
GazzaJ
I have a big Word document where I create many tables and then format the
width of each column within each table e.g.
Create table
myTable.Columns[1].Width = wordApp.CentimetersToPoints(2.81F);
myTable.Columns[2].Width = wordApp.CentimetersToPoints(3.09F);
etc for 11 columns
This appears to the bottleneck in performance. Is there a better way to set
the column widths of a table, maybe in one go.
width of each column within each table e.g.
Create table
myTable.Columns[1].Width = wordApp.CentimetersToPoints(2.81F);
myTable.Columns[2].Width = wordApp.CentimetersToPoints(3.09F);
etc for 11 columns
This appears to the bottleneck in performance. Is there a better way to set
the column widths of a table, maybe in one go.