> Is there any way to retrieve/set the "Text Wrapping" property
> (None/Around) of a table programmatically? I have weird problems
[quoted text clipped - 3 lines]
> Thanks,
> Chris Peacock.
From the VBA help topic on the WrapAroundText property:
This example sets Microsoft Word to wrap text around the first table in the
document.
ActiveDocument.Tables(1).Rows.WrapAroundText = True<<<<
-- Regards,Jay FreedmanMicrosoft Word MVP FAQ:
http://word.mvps.orgEmail cannot be acknowledged; please post all follow-ups
to the newsgroup so all may benefit.
Chris Peacock - 16 Feb 2006 16:12 GMT
Thanks Jay, I didn't think it would be that simple, after scouring the
object model and Google! I didn't expect it in the Rows collection....
Thanks again.