Table.PreferredWidthType property (Word)
Returns or sets the preferred unit of measurement to use for the width of the specified table. Read/write WdPreferredWidthType.
expression. PreferredWidthType
expression Required. A variable that represents a 'Table' object.
This example sets Microsoft Word to accept widths as a percentage of window width, and then it sets the width of the first table in the document to 50% of the window width.
With ActiveDocument.Tables(1)
.PreferredWidthType = wdPreferredWidthPercent
.PreferredWidth = 50
End With
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.