DataGridViewHeaderCell.Resizable Property

Definition

Gets a value indicating whether the cell is resizable.

public:
 virtual property bool Resizable { bool get(); };
[System.ComponentModel.Browsable(false)]
public override bool Resizable { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Resizable : bool
Public Overrides ReadOnly Property Resizable As Boolean

Property Value

true if this cell can be resized; otherwise, false. The default is false if the cell is not attached to a DataGridView.

Attributes

Remarks

A row header cell is resizable if the row is resizable or the RowHeadersWidthSizeMode property is set to EnableResizing. A column header cell is resizable if the column is resizable or the ColumnHeadersHeightSizeMode property is set to EnableResizing.

Applies to

See also