DataGrid.GridLineColor Property

Definition

Gets or sets the color of the grid lines.

public:
 property System::Drawing::Color GridLineColor { System::Drawing::Color get(); void set(System::Drawing::Color value); };
public System.Drawing.Color GridLineColor { get; set; }
member this.GridLineColor : System.Drawing.Color with get, set
Public Property GridLineColor As Color

Property Value

A Color that represents the color of the grid lines. The default is the system color for controls (Control).

Exceptions

The value is not set.

Examples

The following code example sets the color of the grid's lines using a value passed to the method.

private:
   void SetGridLineColor(
      DataGrid^ myGrid, System::Drawing::Color newcolor )
   {
      myGrid->GridLineColor = newcolor;
   }
private void SetGridLineColor
(DataGrid myGrid, System.Drawing.Color newcolor)
{
   myGrid.GridLineColor = newcolor;
}
Private Sub SetGridLineColor(myGrid As DataGrid, newcolor As System.Drawing.Color)
    myGrid.GridLineColor = newcolor
End Sub

Remarks

No grid line is displayed if the GridLineStyle property is set to DataGridLineStyle.None.

Applies to

See also