Sets a TableCell.WidthUnits object that represents the units used for the width of a particular column.

 public void SetPreferredColumnWidthUnits(int column, WidthUnits units)
Public Sub SetPreferredColumnWidthUnits(ByVal column As Integer, ByVal units As WidthUnits)

The column index for which to get the width units.

The preferred width units.

MS Word equivalent: Table menu > Table properties... > Column tab > Size section > Column #: > Measure in:


          //--- Set the column width units for the 3rd column to percentage
          oTable.SetPreferredWidthUnits(2, TableCell.WidthUnits.Percentage);
        

          '--- Set the column width units for the 3rd column to percentage
          oTable.SetPreferredWidthUnits(2, TableCell.WidthUnits.Percentage)