DataGridTableStyle.ResetBackColor Method

Definition

Resets the BackColor property to its default value.

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

Examples

The following code example demonstrates the use of this member.

private:
   void AddCustomColumnStyle()
   {
      // Set the TableStyle Mapping name.
      myTableStyle->MappingName = "customerTable";
      myTableStyle->BackColor = Color::Pink;
      
      // Set the ColumnStyle properties and add to TableStyle.
      myColumnStyle->MappingName = "Customers";
      myColumnStyle->HeaderText = "Customer Name";
      myColumnStyle->Width = 250;
      myTableStyle->GridColumnStyles->Add( myColumnStyle );
      myDataGrid->TableStyles->Add( myTableStyle );
   }

   void myButton1_Click( Object^ /*sender*/, EventArgs^ /*e*/ )
   {
      // Reset the background color.
      myTableStyle->ResetBackColor();
   }
private void AddCustomColumnStyle()
{
   // Set the TableStyle Mapping name.
   myTableStyle.MappingName = "customerTable";
   myTableStyle.BackColor = Color.Pink;

   // Set the ColumnStyle properties and add to TableStyle.
   myColumnStyle.MappingName = "Customers";
   myColumnStyle.HeaderText = "Customer Name";
   myColumnStyle.Width = 250;
   myTableStyle.GridColumnStyles.Add(myColumnStyle);
   myDataGrid.TableStyles.Add(myTableStyle);
}

private void myButton1_Click(object sender, EventArgs e)
{
   // Reset the background color.
   myTableStyle.ResetBackColor();
}
Private Sub AddCustomColumnStyle()
   ' Set the TableStyle Mapping name.
   myTableStyle.MappingName = "customerTable"
   myTableStyle.BackColor = Color.Pink
   
   ' Set the ColumnStyle properties and add to TableStyle.
   myColumnStyle.MappingName = "Customers"
   myColumnStyle.HeaderText = "Customer Name"
   myColumnStyle.Width = 250
   myTableStyle.GridColumnStyles.Add(myColumnStyle)
   myDataGrid.TableStyles.Add(myTableStyle)
End Sub


Private Sub myButton1_Click(sender As Object, e As EventArgs)
   ' Reset the background color.
   myTableStyle.ResetBackColor()
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.

Applies to