FontFamily::Name Property
.NET Framework (current version)
Gets the name of this FontFamily.
Assembly: System.Drawing (in System.Drawing.dll)
The following code example shows all the font families in the Families property of the FontFamily class. This example is designed to be used with a Windows Form. To run this example, add a ListBox named listBox1 to a form, and call the PopulateListBoxWithFonts method from the form's constructor.
private: void PopulateListBoxWithFonts() { listBox1->Width = 200; listBox1->Location = Point(40,120); System::Collections::IEnumerator^ myEnum = FontFamily::Families->GetEnumerator(); while ( myEnum->MoveNext() ) { FontFamily^ oneFontFamily = safe_cast<FontFamily^>(myEnum->Current); listBox1->Items->Add( oneFontFamily->Name ); } }
.NET Framework
Available since 1.1
Available since 1.1
Show: