Font.ToHfont Method
.NET Framework 4
Returns a handle to this Font.
Assembly: System.Drawing (in System.Drawing.dll)
| Exception | Condition |
|---|---|
| Win32Exception |
The operation was unsuccessful. |
The following code example creates a Font and then gets a handle to that Font. The example is designed for use with Windows Forms, and it requires PaintEventArgs e, which is a parameter of the Paint event handler.
//Reference the GDI DeleteObject method. [System.Runtime.InteropServices.DllImport("GDI32.dll")] public static extern bool DeleteObject(IntPtr objectHandle); public void ToHfont_Example(PaintEventArgs e) { // Create a Font object. Font myFont = new Font("Arial", 16); // Get a handle to the Font object. IntPtr hFont = myFont.ToHfont(); // Display a message box with the value of hFont. MessageBox.Show(hFont.ToString()); //Dispose of the hFont. DeleteObject(hFont); }
-
SecurityPermission
for access to unmanaged code. Related enumeration: UnmanagedCode
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.