dotnetmonitor.com |
|
||||||||||||
| By default, users
can resize rows, columns, and headers that do not use an automatic sizing mode
based on cell values. To prevent users from resizing with other modes, such as
column fill mode, set one or more of the following DataGridView properties:
AllowUserToResizeColumns AllowUserToResizeRows ColumnHeadersHeightSizeMode RowHeadersWidthSizeMode
You can also prevent users from resizing individual rows or columns by setting their Resizable properties. By default, the Resizable property value is based on the AllowUserToResizeColumns property value for columns and the AllowUserToResizeRows property value for rows. If you explicitly set Resizable to True or False, however, the specified value overrides the control value is for that row or column. Set Resizable to NotSet to restore the inheritance.
Because NotSet restores the value inheritance, the Resizable property will never return a NotSet value unless the row or column has not been added to a DataGridView control. If you need to determine whether the Resizable property value of a row or column is inherited, examine its State property. If the State value includes the ResizableSet flag, the Resizable property value is not inherited. |
||||||||||||
|
||||||||||||