DataGridViewCellBorderStyle Enumeration
.NET Framework 3.0
Specifies the border styles that can be applied to the cells of a DataGridView control.
Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in system.windows.forms.dll)
Assembly: System.Windows.Forms (in system.windows.forms.dll)
| Member name | Description | |
|---|---|---|
| Custom | A border that has been customized. | |
| None | No borders. | |
| Raised | A three-dimensional raised border. | |
| RaisedHorizontal | A horizontal three-dimensional raised border. | |
| RaisedVertical | A vertical three-dimensional raised border. | |
| Single | A single line border. | |
| SingleHorizontal | A horizontal single-line border. | |
| SingleVertical | A vertical single-line border. | |
| Sunken | A three-dimensional sunken border. | |
| SunkenHorizontal | A horizontal three-dimensional sunken border. | |
| SunkenVertical | A vertical three-dimensional sunken border. |
The CellBorderStyle property of the DataGridView control uses the DataGridViewCellBorderStyle enumeration. To draw borders only between the rows, specify SingleHorizontal, SunkenHorizontal or RaisedHorizontal. To draw borders only between the columns, specify SingleVertical, SunkenVertical or RaisedVertical. To draw borders between the rows and columns, specify SingleSunken or Raised.
The following code example illustrates the use of this type.
private void SetBorderAndGridlineStyles() { this.dataGridView1.GridColor = Color.BlueViolet; this.dataGridView1.BorderStyle = BorderStyle.Fixed3D; this.dataGridView1.CellBorderStyle = DataGridViewCellBorderStyle.None; this.dataGridView1.RowHeadersBorderStyle = DataGridViewHeaderBorderStyle.Single; this.dataGridView1.ColumnHeadersBorderStyle = DataGridViewHeaderBorderStyle.Single; }
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: