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::Width Property

 

Gets or sets the current width of the column.

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

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

Property Value

Type: System::Int32

The width, in pixels, of the column. The default is 100.

Exception Condition
ArgumentOutOfRangeException

The specified value when setting this property is greater than 65536.

If the specified value when setting this property is less than the value of the MinimumWidth property, the MinimumWidth property value is used instead.

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

// Set the width.
void Button5_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
   DataGridViewColumn^ column = dataGridView->Columns[ 0 ];
   column->Width = 60;
}


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