FontFamily::GetHashCode Method ()
.NET Framework (current version)
Gets a hash code for this FontFamily.
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 FontFamily.
Gets the hash code for the font family.
Draws the value of the hash code to the screen as text.
public: void GetHashCode_Example( PaintEventArgs^ e ) { // Create a FontFamily object. FontFamily^ myFontFamily = gcnew FontFamily( "Arial" ); // Get the hash code for myFontFamily. int hashCode = myFontFamily->GetHashCode(); // Draw the value of hashCode to the screen as a string. e->Graphics->DrawString( String::Format( "hashCode = {0}", hashCode ), gcnew System::Drawing::Font( myFontFamily,16 ), Brushes::Black, PointF(0,0) ); }
.NET Framework
Available since 1.1
Available since 1.1
Show: