ComponentOne FlexGrid for WinForms
AutoResize Property

C1.Win.C1FlexGrid Namespace > C1FlexGridBase Class : AutoResize Property
Gets or sets whether column widths are automatically adjusted when data is loaded.
Syntax
'Declaration
 
Public Property AutoResize As Boolean
public bool AutoResize {get; set;}
Remarks

This property works when the control is bound to a DataSource.

If AutoResize is set to true, the control automatically resizes its columns to fit the widest entry every time new data is read from the data source.

If the data source contains a large number of rows and columns, the automatic resizing may take a relatively long time. In these cases, you should consider setting AutoResize to false and setting the column widths directly in code.

You may also use the AutoSizeCols(Int32,Int32,Int32,Int32,Int32,AutoSizeFlags) method to adjust the column widths automatically.

See Also

Reference

C1FlexGridBase Class
C1FlexGridBase Members