Discussion:
Adjusting table row height in code
(too old to reply)
Wotme
2012-07-13 12:13:09 UTC
Permalink
Can anyone help with some code I could use to adjust the row height in
table


--
Wotme
Stefan Blom
2012-07-13 15:11:39 UTC
Permalink
If you are saying that you want to set a fixed row height, the following
code should be helpful:

With ActiveDocument.Tables(1).Rows(1)
.HeightRule = wdRowHeightExactly
.Height = InchesToPoints(0.5)
End With

The macro sets the height of the first row in the first table of the
active document to 0.5".

Stefan Blom
Microsoft Word MVP
Can anyone help with some code I could use to adjust the row height in a
table.
Loading...