Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than gdi32, prefix the name with the module name and a period.
The following method can be used to get the width of a single character. Change to W for unicode
/// <summary>
/// Gets the width of an ANSI true type font character
/// </summary>
/// <param name="g">A graphics object</param>
/// <param name="f">A font, note that all Fonts encapsulated
/// in a Font object are True Type.</param>
/// <param name="c">A character</param>
public static ABC GetCharABCWidthsA_(Graphics g, Font f, char c)
{
IntPtr hDC = g.GetHdc();
W32.ABC[] abc_array = new ABC[1];
IntPtr abcptr = Marshal.UnsafeAddrOfPinnedArrayElement(abc_array, 0);
IntPtr hFont = f.ToHfont();
if (!result)
{
Console.WriteLine("Did not find ABC: " + f.ToString());
//Only works if "setLastError" is true on DllImport
Int32 err = Marshal.GetLastWin32Error();
throw new Win32Exception(err);
}
}
finally
{
DeleteObject(hFont);
g.ReleaseHdc(hDC);
}
return abc_array[0];
}
/// <summary>
/// The SelectObject function selects an object into the specified device
/// context (DC). The new object replaces the previous object of the same
/// type.
/// </summary>
/// <param name="hdc">Handle to the DC.</param>
/// <param name="hgdiobj">Handle to the object to be selected.</param>
/// <returns>If IntPtr.Zero it's an error</returns>
[DllImport("gdi32.dll", ExactSpelling = true, PreserveSig = true, SetLastError = true)]
public static extern IntPtr SelectObject(IntPtr hdc, IntPtr hgdiobj);
/// <summary>
/// deletes a logical pen, brush, font, bitmap, region, or palette,
/// freeing all system resources associated with the object.
/// </summary>
[DllImport("GDI32.dll")]
public static extern bool DeleteObject(IntPtr objectHandle);
Alternative Managed API:
Do you know one? Please contribute it!
Retrieves the widths, in logical units, of consecutive glyph indices in a specified range from the current ""TrueType"" font.
3/16/2007 7:45:04 AM - -91.208.24.18
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).