Visual Studio 2010 - Visual C++
CDC::GetCharWidth
Retrieves the widths of individual characters in a consecutive group of characters from the current font, using m_hAttribDC, the input device context.
BOOL GetCharWidth( UINT nFirstChar, UINT nLastChar, LPINT lpBuffer ) const; BOOL GetCharWidth( UINT nFirstChar, UINT nLastChar, float* lpFloatBuffer ) const;
Parameters
Return Value
Nonzero if the function is successful; otherwise 0.
Remarks
For example, if nFirstChar identifies the letter 'a' and nLastChar identifies the letter 'z', the function retrieves the widths of all lowercase characters.
The function stores the values in the buffer pointed to by lpBuffer. This buffer must be large enough to hold all of the widths. That is, there must be at least 26 entries in the example given.
If a character in the consecutive group of characters does not exist in a particular font, it will be assigned the width value of the default character.
Requirements
Header: afxwin.h
See Also