C1.WPF.PrintDocument.4.6.2 Assembly / C1.C1Preview Namespace / RenderTable Class / ColumnSizingMode Property

In This Topic
ColumnSizingMode Property
In This Topic
Gets or sets a value determining how the widths of table columns are calculated. The default is TableSizingModeEnum.Fixed.
Syntax
'Declaration
 
Public Property ColumnSizingMode As TableSizingModeEnum
 
Remarks
To make a table with automatically calculated columns' widths, set this property to TableSizingModeEnum.Auto, and the Width on the RenderTable to Unit.Auto, e.g.: RenderTable rt = new RenderTable(); rt.ColumnSizingMode = TableSizingModeEnum.Auto; rt.Width = Unit.Auto;
See Also