E
Erez Harari
I write Word VBA script that contains the following code:
For Each R In Tbl.rows
If R.Height <= 100 Then
.......
End If
Next
The property R.Height returns 9999999 when R.HeightRule = wdRowHeightAuto and
12 when R.HeightRule = wdRowHeightExactly In both cases the row height is
wrong.
Why the property R.Height returns wrong values?
Is there is a way to find programmatically the row height?
Thanks in advance
For Each R In Tbl.rows
If R.Height <= 100 Then
.......
End If
Next
The property R.Height returns 9999999 when R.HeightRule = wdRowHeightAuto and
12 when R.HeightRule = wdRowHeightExactly In both cases the row height is
wrong.
Why the property R.Height returns wrong values?
Is there is a way to find programmatically the row height?
Thanks in advance