DataGridViewBand.Resizable Property

Definition

Gets or sets a value indicating whether the band can be resized in the user interface (UI).

C#
[System.ComponentModel.Browsable(true)]
public virtual System.Windows.Forms.DataGridViewTriState Resizable { get; set; }

Property Value

One of the DataGridViewTriState values. The default is True.

Attributes

Examples

The following code example sets the Resizable property to the default.

C#
dataGridView1.Columns[2].Resizable =
    DataGridViewTriState.NotSet;

Remarks

You can 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 control value is ignored. 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, check its State property. If the State value includes the ResizableSet flag, the Resizable property value is not inherited. If the Resizable property value is False, the user will not be able to manually adjust band size.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also