DataGridViewColumn.DividerWidth Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the width, in pixels, of the column divider.
public:
property int DividerWidth { int get(); void set(int value); };
public int DividerWidth { get; set; }
member this.DividerWidth : int with get, set
Public Property DividerWidth As Integer
Property Value
The thickness, in pixels, of the divider (the column's right margin).
Examples
The following code example adds a vertical edge after the third column. This code example is part of a larger example provided for the DataGridViewColumn class.
// Set the vertical edge.
void Button7_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
int thirdColumn = 2;
// int edgeThickness = 5;
DataGridViewColumn^ column = dataGridView->Columns[ thirdColumn ];
column->DividerWidth = 10;
}
// Set the vertical edge.
private void Button7_Click(object sender,
System.EventArgs e)
{
int thirdColumn = 2;
DataGridViewColumn column =
dataGridView.Columns[thirdColumn];
column.DividerWidth = 10;
}
' Set the vertical edge.
Private Sub Button7_Click(ByVal sender As Object, _
ByVal e As System.EventArgs) Handles Button7.Click
Dim thirdColumn As Integer = 2
Dim column As DataGridViewColumn = _
dataGridView.Columns(thirdColumn)
column.DividerWidth = 10
End Sub
Remarks
This property is useful to provide a visual boundary between frozen columns and columns that can scroll. The extra edge is part of the current column, 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 column. To resize a column, the user must double-click on the boundary between the divider and the adjacent column.