DataGridTableStyle.ResetHeaderBackColor Method

Definition

Resets the HeaderBackColor property to its default value.

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

Examples

The following code example demonstrates the use of this member.

private:
   void Button_Click( Object^ /*sender*/, EventArgs^ /*e*/ )
   {
      // Change the color of 'HeaderBack'.
      myDataTableStyle->HeaderBackColor = Color::LightPink;
   }

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

private void Button_Click(object sender, EventArgs e)
{
   // Change the color of 'HeaderBack'.
   myDataTableStyle.HeaderBackColor = Color.LightPink;
}

private void Button1_Click(object sender, EventArgs e)
{
    // Reset the 'HeaderBack' to its origanal color.
    myDataTableStyle.ResetHeaderBackColor();
}
 Private Sub Button_Click(ByVal sender As Object, ByVal e As EventArgs)
     ' Change the color of 'HeaderBack'.
     myDataTableStyle.HeaderBackColor = Color.LightPink
 End Sub

 Private Sub Button1_Click(ByVal sender As Object, ByVal e As EventArgs)
     ' Reset the 'HeaderBack' to its origanal color.
     myDataTableStyle.ResetHeaderBackColor()
 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 ShouldSerializeHeaderBackColor method to determine whether the property value has changed from its default.

Applies to

See also