DataGridTableStyle.ResetHeaderFont Method

Definition

Resets the HeaderFont property to its default value.

C#
public void ResetHeaderFont();

Examples

The following code example demonstrates the use of this member.

C#
private void MySetButton_Click(object sender, EventArgs e)
{
   // Set the 'HeaderFont' property of the DataGridTableStyle instance.
   myTableStyle.HeaderFont=new Font("Impact",10);
   // Add the DataGridTableStyle instance to the GridTableStylesCollection. 
   myDataGrid.TableStyles.Add(myTableStyle);
}
private void MyResetButton_Click(object sender, EventArgs e)
{
   // Reset the Header Font to its default value.
   myTableStyle.ResetHeaderFont();
}

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

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 10

See also