Table.AutoFitBehavior Method
Determines how Microsoft Word resizes a table when the AutoFit feature is used.
Namespace: Microsoft.Office.Interop.Word
Assembly: Microsoft.Office.Interop.Word (in Microsoft.Office.Interop.Word.dll)
Syntax
'Declaration
Sub AutoFitBehavior ( _
Behavior As WdAutoFitBehavior _
)
'Usage
Dim instance As Table
Dim Behavior As WdAutoFitBehavior
instance.AutoFitBehavior(Behavior)
void AutoFitBehavior(
WdAutoFitBehavior Behavior
)
Parameters
- Behavior
Type: Microsoft.Office.Interop.Word.WdAutoFitBehavior
Required WdAutoFitBehavior. How Word resizes the specified table with the AutoFit feature is used.
Can be one of these WdAutoFitBehavior constants:
wdAutoFitContent
wdAutoFitWindow
wdAutoFitFixed
Remarks
Word can resize the table based on the content of the table cells or the width of the document window. You can also use this method to turn off AutoFit so that the table size is fixed, regardless of cell contents or window width.
Setting the AutoFit behavior to wdAutoFitContent or wdAutoFitWindow sets the AllowAutoFit property to True if it's currently False. Likewise, setting the AutoFit behavior to wdAutoFitFixed sets the AllowAutoFit property to False if it's currently True.