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

See also

Table Object

Support and feedback

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.