DataGridTableStyle.ResetGridLineColor Method

Definition

Resets the GridLineColor property to its default value.

public:
 void ResetGridLineColor();
public void ResetGridLineColor ();
member this.ResetGridLineColor : unit -> unit
Public Sub ResetGridLineColor ()

Examples

The following code example demonstrates the use of this member.

private:
   void Button_Click( Object^ /*sender*/, EventArgs^ /*e*/ )
   {
      // Change the 'GridLineColor'.
      myDataTableStyle->GridLineColor = Color::Blue;
   }

   void Button1_Click( Object^ /*sender*/, EventArgs^ /*e*/ )
   {
      // Reset the 'GridLineColor' to its orginal color.
      myDataTableStyle->ResetGridLineColor();
   }

private void Button_Click(object sender, EventArgs e)
{
     // Change the 'GridLineColor'.
     myDataTableStyle.GridLineColor = Color.Blue;
}

private void Button1_Click(object sender, EventArgs e)
{
   // Reset the 'GridLineColor' to its orginal color.
    myDataTableStyle.ResetGridLineColor();
}
 Private Sub Button_Click(ByVal sender As Object, ByVal e As EventArgs) Handles myButton.Click
     ' Change the 'GridLineColor'.
     myDataTableStyle.GridLineColor = Color.Blue
 End Sub

 Private Sub Button1_Click(ByVal sender As Object, ByVal e As EventArgs) Handles myButton1.Click
     ' Reset the 'GridLineColor' to its orginal color.
     myDataTableStyle.ResetGridLineColor()
 End Sub

Remarks

You typically use this method if you are either creating a designer for the DataGridTableStyle or creating your own control incorporating the DataGridTableStyle. You can use the ShouldSerializeGridLineColor method to determine whether the property value has changed from its default.

Applies to