Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

GetTextExtentPoint (gdi32)
 
.
Summary

C# Signature:

[DllImport("gdi32.dll")]
static extern bool GetTextExtentPoint(IntPtr hdc, string lpString,
   int cbString, ref Size lpSize);

User-Defined Types:

None.

Notes:

The GetTextExtentPoint function uses the currently selected font to compute the dimensions of the string. GetTextExtentPoint computes the width and height, in logical units, without considering any clipping.

Because some devices kern characters, the sum of the extents of the characters in a string does not always equal to the extent of the string.

The GetTextExtentPoint function is identical to the GetTextExtentPoint32 function.

Tips & Tricks:

This API is useful for TextOut preparation or post comparison. These API's are most useful when working with fonts other than

(but not restricted to) True Type, Open Type, and PostScript fonts. The most common being raster (pixel) fonts which are not supported

by the .NET framework. TextOut and it's helpers tend to be a bit faster because they are unmanaged and work well with .NET's existing

[Graphics.GetHdc()] method. Any graphics / bitmap pair you create will already have a default font, and you can start using TextOut and the above function right away without having to pre-init all the stuff that goes with it (Fonts, Brushes, etc). Good luck!

Sample Code:

Please add some!

Alternative Managed API:

MeasureString, MeasureCharacterRanges

Documentation

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).

 
Access PInvoke.net directly from VS:
Terms of Use
Find References
Show Printable Version
Revisions