FontFamily::ToString Method ()
.NET Framework (current version)
Converts this FontFamily to a human-readable string representation.
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 creates a FontFamily and draws a string representation of the font family to the screen.
public: void ToString_Example( PaintEventArgs^ e ) { // Create a FontFamily object. FontFamily^ myFontFamily = gcnew FontFamily( "Arial" ); // Draw a string representation of myFontFamily to the screen. e->Graphics->DrawString( myFontFamily->ToString(), gcnew System::Drawing::Font( myFontFamily,16 ), Brushes::Black, PointF(0,0) ); }
.NET Framework
Available since 1.1
Available since 1.1
Show: