Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Description

Excerpt

Returns a boolean that represents whether or not this table's width will be set automatically by Word.

Signature
C#
C#
public boolean AutoWidth{ get; set; }
{signature}{signature:
}
Signature
vb.net
vb.net
Public Property AutoWidth() As Boolean
{signature}
{remarks}MS Word 
Remarks

MS Word equivalent:

Table

menu

>

Table

Properties...

>

Table

tab

>

Options...

>

Automatically

resize

to

fit

contents

{

Info
}

You

will

have

to

call

{{[

table.SetPreferredColumnWidthUnits(i,TableCell.WidthUnits.Auto)

|Table.SetPreferredColumnWidthUnits(Int32, TableCell.WidthUnits)]}}

to

have

each

column

adjusted

to

fit

the

text{info} {remarks} {example}{code:csharp|title=C#}

text

Example
Code Block
csharp
csharp
titleC#
          
boolean autoWidth = oTableFormatting.AutoWidth;
        
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}
          
Dim autoWidth As Boolean = oTableFormatting.AutoWidth
        
{code} {example}