DataGrid::ResetHeaderFont Method ()

 

Resets the HeaderFont property to its default value.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
void ResetHeaderFont()

You typically use this method if you are either creating a designer for the System.Windows.Forms::DataGrid or creating your own control incorporating the System.Windows.Forms::DataGrid. You can use the ShouldSerializeHeaderFont method to determine whether the property value has changed from its default.

The following code example demonstrates the use of this member.

private:
   // Set the header font to Arial with size 20.
   void button6_Click( Object^ /*sender*/, EventArgs^ /*e*/ )
   {
      myDataGrid->HeaderFont = gcnew System::Drawing::Font( "Arial",20 );
   }

   // Reset the header font.
   void button5_Click( Object^ /*sender*/, EventArgs^ /*e*/ )
   {
      myDataGrid->ResetHeaderFont();
   }

.NET Framework
Available since 1.1
Return to top
Show: