FontFamily::Equals Method (Object^)
.NET Framework (current version)
Indicates whether the specified object is a FontFamily and is identical to this FontFamily.
Assembly: System.Drawing (in System.Drawing.dll)
Parameters
- obj
-
Type:
System::Object^
The object to test.
Return Value
Type: System::Booleantrue if obj is a FontFamily and is identical to this FontFamily; otherwise, false.
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 two Font objects.
Tests whether they are equivalent.
Displays the result of the test in a message box.
public: void Equals_Example( PaintEventArgs^ /*e*/ ) { // Create two FontFamily objects. FontFamily^ firstFontFamily = gcnew FontFamily( "Arial" ); FontFamily^ secondFontFamily = gcnew FontFamily( "Times New Roman" ); // Check to see if the two font families are equivalent. bool equalFonts = firstFontFamily->Equals( secondFontFamily ); // Display the result of the test in a message box. MessageBox::Show( equalFonts.ToString() ); }
.NET Framework
Available since 1.1
Available since 1.1
Show: