Description
Returns aboolean
that represents whether or not this table's width will be set automatically by Word.
C#
public boolean AutoWidth{ get ; set ; } |
vb.net
Public Property AutoWidth() As Boolean |
Remarks
MS Word equivalent: Table menu > Table Properties... > Table tab > Options... > Automatically resize to fit contents
Examples
C#
boolean autoWidth = oTableFormatting.AutoWidth; |
vb.net
Dim autoWidth As Boolean = oTableFormatting.AutoWidth |