FlexGrid for WinForms | ComponentOne
C1.Win.C1FlexGrid Namespace / C1FlexGridBase Class / AutoResize Property

In This Topic
    AutoResize Property (C1FlexGridBase)
    In This Topic
    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