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

In This Topic
    AllowResizing Property (C1FlexGridBase)
    In This Topic
    Gets or sets whether the user is allowed to resize rows and columns with the mouse.
    Syntax
    'Declaration
     
    
    Public Property AllowResizing As AllowResizingEnum
    public AllowResizingEnum AllowResizing {get; set;}
    Remarks

    To resize rows or columns, the mouse must be over the fixed area of the grid, and close to a border between rows or columns. The mouse pointer will change into a sizing pointer and the user can drag the row or column to change the row height or column width.

    If a group of columns is selected (from first to last row) and the user resizes one of them, all selected columns are resized. The same applies to rows.

    If column sizing is allowed, users may double-click the resizing area to resize a column so it will automatically fit the longest entry.

    Rows with zero height and columns with zero width can't be resized by the user. If you want to make them very small but still resizable, set their height or width to one pixel, not to zero.

    The BeforeResizeRow and BeforeResizeColumn events fire before resizing starts, and may be used to prevent resizing of specific rows and columns. The AfterResizeRow and AfterResizeColumn events fire after resizing, and may be used to validate the user's action and to update the display.

    See Also