DataGridView.RowHeadersBorderStyle Property
Gets or sets the border style of the row header cells.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
<BrowsableAttribute(True)> Public Property RowHeadersBorderStyle As DataGridViewHeaderBorderStyle
Property Value
Type: System.Windows.Forms.DataGridViewHeaderBorderStyleOne of the DataGridViewHeaderBorderStyle values.
| Exception | Condition |
|---|---|
| InvalidEnumArgumentException | The specified value when setting this property is not a valid DataGridViewHeaderBorderStyle value. |
| ArgumentException | The specified value when setting this property is Custom. |
If the RowHeadersBorderStyle property is set to anything other than Single, the GridColor property must be a system color.
You cannot set this property to the Custom value, which is a read-only value indicating that the border style has been customized through the use of the AdvancedRowHeadersBorderStyle property.
Note |
|---|
If visual styles are enabled for the application through the Application.EnableVisualStyles method and the EnableHeadersVisualStyles property is true, the row headers are painted using the current theme. In this case, the value of the RowHeadersBorderStyle property is ignored for all row headers except the TopLeftHeaderCell, to which the theme is not applied. |
The following code example illustrates the use of this property.
Private Sub SetBorderAndGridlineStyles() With Me.dataGridView1 .GridColor = Color.BlueViolet .BorderStyle = BorderStyle.Fixed3D .CellBorderStyle = DataGridViewCellBorderStyle.None .RowHeadersBorderStyle = _ DataGridViewHeaderBorderStyle.Single .ColumnHeadersBorderStyle = _ DataGridViewHeaderBorderStyle.Single End With End Sub
Available since 2.0
