Font::GetHashCode Method ()
.NET Framework (current version)
Gets the hash code for this Font.
Assembly: System.Drawing (in System.Drawing.dll)
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
Available since 1.1
Show: