DataGrid::GridLineColor Property

 

Gets or sets the color of the grid lines.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
property Color GridLineColor {
	Color get();
	void set(Color value);
}

Property Value

Type: System.Drawing::Color

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

Exception Condition
ArgumentException

The value is not set.

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

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;
   }

.NET Framework
Available since 1.1
Return to top
Show: