Table.AllowAutoFit Property

Word Developer Reference

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.

Visual Basic for Applications
  Sub AllowFit()
    ActiveDocument.Tables(1).AllowAutoFit = True
End Sub

See Also