Sets the widths of this Table's columns (in points).
The following examples assume that the page size is 450 pts.
1) table.SetWidths( new float[] { 100f, 100, 200f } );
The resulting columns' sizes will be 100, 100 and 200, because the total width of the array (400) is smaller than the page size (450).
2) table.SetWidths( new float[] { 200f, 100, 300f } );
The resulting columns' sizes will be 150 (200/600*450), 75 (100/600*450) and 225 (300/600*450), because the total width of the array (600) is greater than the page size (450).
Target Platforms: Windows 11, Windows 10, Windows 7, Windows, 11, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2