Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/2010

This function retrieves the number of characters in a specified string that fit within a specified space and fills an array with the text extent for each of those characters. A text extent is the distance between the beginning of the space and a character that fits in the space.

Syntax

BOOL GetTextExtentExPoint(
  HDC 
hdc, 
  LPCTSTR 
lpszStr, 
  int 
cchString, 
  int 
nMaxExtent, 
  LPINT 
lpnFit, 
  LPINT 
alpDx, 
  LPSIZE 
lpSize
); 

Parameters

hdc

[in] Handle to the device context (DC).

lpszStr

[in] Long pointer to the null-terminated string for which you want to retrieve text extents.

cchString

[in] Integer that specifies the number of characters in the string to which the lpszStrparameter points.

nMaxExtent

[in] Integer that specifies the maximum allowable width, in logical units, of the formatted string.

lpnFit

[out] Long pointer to an integer that receives a count of the maximum number of characters that fit in the space specified by the nMaxExtentparameter. When the lpnFitparameter is NULL, GetTextExtentExPointignores the nMaxExtentparameter.

alpDx

[out] Long pointer to an array of integers that receives partial string extents. Each element in the array gives the distance, in logical units, between the beginning of the string and one of the characters that fits in the space specified by the nMaxExtentparameter. Although this array should have at least as many elements as characters specified by the cchStringparameter, the function fills the array with extents only for as many characters as are given by the lpnFitparameter. If alpDxis NULL, the function does not compute partial string widths.

lpSize

[out] Long pointer to a SIZEstructure that contains the dimensions of the string, in logical units, when the function returns. This value cannot be NULL.

Return Value

Nonzero indicates success. Zero indicates failure. To get extended error information, call GetLastError.

Remarks

If both the lpnFitand alpDxparameters are NULL, calling the GetTextExtentExPointfunction is equivalent to calling the GetTextExtentPointfunction.

Requirements

Header windows.h
Library coredll.lib
Windows Embedded CE Windows CE 1.0 and later
Windows Mobile Pocket PC for Windows Mobile Version 5.0 and later, Smartphone for Windows Mobile Version 5.0 and later

See Also

Reference

GetTextExtentPoint

Other Resources

SIZE