Table.AllowAutoFit Property (Word)
Allows Microsoft Word to automatically resize cells in a table to fit their contents. Read/write Boolean.
Syntax
expression .AllowAutoFit
expression A variable that represents a Table object.
Example
This example sets the first table in the active document to automatically resize based on its contents.
Sub AllowFit()
ActiveDocument.Tables(1).AllowAutoFit = True
End Sub