It's an annoying shortcoming in Word that there's no easy way to determine
the height of a table row. One option is to use the
Information(wdVerticalPositionRelativeToPage) function -- position the
cursor at the start of the row below and check where you are on the page.
> Hello,
>
[quoted text clipped - 16 lines]
>
> Jean-Yves Tfelt
Jean-Yves - 21 Aug 2006 12:37 GMT
Hi,
Seems to be missing indeed.
I wanted to mirror exactly the two pages ...
Something like
Sub test
Dim x, y
For x = 1 To ActiveDocument.Tables.Count - 1
For y = 1 To ActiveDocument.Tables(x).Rows.Count
ActiveDocument.Tables(x + 1).Rows(y).HeightRule = wdRowHeightExactly
ActiveDocument.Tables(x + 1).Rows(y).Height =
ActiveDocument.Tables(x).Rows(y).Height
Next y
Next x
End Sub
Thank you for the input
Jean-Yves
> It's an annoying shortcoming in Word that there's no easy way to determine
> the height of a table row. One option is to use the
[quoted text clipped - 21 lines]
>>
>> Jean-Yves Tfelt