Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DataGridViewColumn::MinimumWidth Property

 

Gets or sets the minimum width, in pixels, of the column.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
property int MinimumWidth {
	int get();
	void set(int value);
}

Property Value

Type: System::Int32

The number of pixels, from 2 to MaxValue, that specifies the minimum width of the column. The default is 5.

Exception Condition
ArgumentOutOfRangeException

The value is less than 2 or greater than Int32::MaxValue.

The MinimumWidth property sets a limit on how narrow the column can be resized in the user interface (UI). The Width property can override the MinimumWidth property.

The following code example sets the minimum width of a column. This code example is part of a larger example provided for the DataGridViewColumn class.

//Set the minimum width.
void Button4_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
   DataGridViewColumn^ column = dataGridView->Columns[ 1 ];
   column->MinimumWidth = 40;
}


.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft