DataGridViewRow.DividerHeight Property

Definition

Gets or sets the height, in pixels, of the row divider.

C#
public int DividerHeight { get; set; }

Property Value

The height, in pixels, of the divider (the row's bottom margin).

Exceptions

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

Examples

The following code example modifies the height of a row's divider to provide emphasis.

C#
// Set a thick horizontal edge.
private void Button7_Click(object sender,
    System.EventArgs e)
{
    int secondRow = 1;
    DataGridViewRow row = dataGridView.Rows[secondRow];
    row.DividerHeight = 10;
}

Remarks

This property is useful to provide a visual boundary between frozen rows and rows that can scroll. The extra edge is part of the current row, although it will take on the foreground color of the associated DataGridView. The extra edge does not extend the area in which users can double-click to automatically resize a row. To resize a row, the user must double-click on the boundary between the divider and the adjacent row.

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