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.

DataGridViewRow::MinimumHeight Property

 

Gets or sets the minimum height of the row.

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

public:
[BrowsableAttribute(false)]
property int MinimumHeight {
	int get();
	void set(int value);
}

Property Value

Type: System::Int32

The minimum row height in pixels, ranging from 2 to Int32::MaxValue. The default is 3.

Exception Condition
InvalidOperationException

When setting this property, the row is in a DataGridView control and is a shared row.

ArgumentOutOfRangeException

The specified value when setting this property is less than 2.

The MinimumHeight property maintains the display of the row by setting a limit to how far the user can resize the row's height through the user interface (UI).

The following code example uses the MinimumHeight property to set the minimum height of the second row. This code example is part of a larger code example provided in How to: Manipulate Rows in the Windows Forms DataGridView Control.

// Set minimum height.
void Button4_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
   int secondRow = 1;
   DataGridViewRow^ row = dataGridView->Rows[ secondRow ];
   row->MinimumHeight = 40;
}


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