DataGridViewRow.Height Property

Definition

Gets or sets the current height of the row.

C#
public int Height { get; set; }

Property Value

The height, in pixels, of the row. The default is the height of the default font plus 9 pixels.

Exceptions

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

Examples

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

C#
// Set height.
private void Button5_Click(object sender, System.EventArgs e)
{

    DataGridViewRow row = dataGridView.Rows[0];
    row.Height = 15;
}

Remarks

To set the minimum height for a row, use the MinimumHeight property.

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