ComponentOne FlexGrid for WinForms
AllowResizing Property (RowCol)

C1.Win.C1FlexGrid Namespace > RowCol Class : AllowResizing Property
Gets or sets whether the user can resize this row or column with the mouse.
Syntax
'Declaration
 
Public Overridable Property AllowResizing As Boolean
public virtual bool 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 then 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 fire after resizing, and may be used to validate the user's action and to update the display.

See Also

Reference

RowCol Class
RowCol Members