DataGridTableStyle::ResetHeaderForeColor Method ()
.NET Framework (current version)
Resets the HeaderForeColor property to its default value.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
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 ShouldSerializeHeaderForeColor method to determine whether the property value has changed from its default.
The following code example demonstrates the use of this member.
private: void myButton1_Click( Object^ /*sender*/, EventArgs^ /*e*/ ) { // Set the 'HeaderForeColor' property. myDataTableStyle->HeaderForeColor = Color::Blue; } void myButton2_Click( Object^ /*sender*/, EventArgs^ /*e*/ ) { // Reset the 'HeaderForeColor' property to its default value. myDataTableStyle->ResetHeaderForeColor(); }
.NET Framework
Available since 1.1
Available since 1.1
Show: