DataGridTableStyle.ResetHeaderFont Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Resets the HeaderFont property to its default value.
public:
void ResetHeaderFont();
public void ResetHeaderFont ();
member this.ResetHeaderFont : unit -> unit
Public Sub ResetHeaderFont ()
Examples
The following code example demonstrates the use of this member.
private:
void MySetButton_Click( Object^ /*sender*/, EventArgs^ /*e*/ )
{
// Set the 'HeaderFont' property of the DataGridTableStyle instance.
myTableStyle->HeaderFont = gcnew System::Drawing::Font( "Impact",10 );
// Add the DataGridTableStyle instance to the GridTableStylesCollection.
myDataGrid->TableStyles->Add( myTableStyle );
}
void MyResetButton_Click( Object^ /*sender*/, EventArgs^ /*e*/ )
{
// Reset the Header Font to its default value.
myTableStyle->ResetHeaderFont();
}
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();
}
Private Sub MySetButton_Click(ByVal sender As Object, ByVal e As EventArgs)
' Set the 'HeaderFont' property of DataGridTableStyle instance.
myTableStyle.HeaderFont = New Font("Impact", 10)
' Add the DataGridTableStyle instance to the GridTableStylesCollection.
myDataGrid.TableStyles.Add(myTableStyle)
End Sub
Private Sub MyResetButton_Click(ByVal sender As Object, ByVal e As EventArgs)
' Reset the Header Font to its default value.
myTableStyle.ResetHeaderFont()
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
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.