Font::GetHashCode Method ()

 

Gets the hash code for this Font.

Namespace:   System.Drawing
Assembly:  System.Drawing (in System.Drawing.dll)

public:
virtual int GetHashCode() override

Return Value

Type: System::Int32

The hash code for this Font.

The following code example is designed for use with Windows Forms, and it requires PaintEventArgse, which is a parameter of the Paint event handler. The code performs the following actions:

  • Creates a Font.

  • Gets the hash code for that font.

  • Displays a message box with the value of the hash code.

public:
   void GetHashCode_Example( PaintEventArgs^ /*e*/ )
   {
      // Create a Font object.
      System::Drawing::Font^ myFont = gcnew System::Drawing::Font( "Arial",16 );

      // Get the hash code for myFont.
      int hashCode = myFont->GetHashCode();

      // Display the hash code in a message box.
      MessageBox::Show( hashCode.ToString() );
   }

.NET Framework
Available since 1.1
Return to top
Show: