|
| БЕСПЛАТНАЯ ежедневная online лотерея! Выигрывай каждый день БЕСПЛАТНО! |
|
|
GetTextExtentPoint32
The GetTextExtentPoint32 function computes the width and height of the specified string of text. This function supersedes the GetTextExtentPoint function.
BOOL GetTextExtentPoint32(
HDC hdc, // handle of device context LPCTSTR lpString, // address of text string int cbString, // number of characters in string LPSIZE lpSize // address of structure for string size );
Parameters
hdc
Identifies the device context.
lpString
Points to the string of text. The string does not need to be zero-terminated, since cbString specifies the length of the string.
cbString
Specifies the number of characters in the string.
lpSize
Points to a SIZE structure in which the dimensions of the string are to be returned.
Return Values
If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError.
Remarks
The GetTextExtentPoint32 function uses the currently selected font to compute the dimensions of the string. The width and height, in logical units, are computed without considering any clipping. Because some devices kern characters, the sum of the extents of the characters in a string may not be equal to the extent of the string. The calculated string width takes into account the intercharacter spacing set by the SetTextCharacterExtra function.
See Also
GetTextExtentPoint, SetTextCharacterExtra, SIZE
| Пригласи друзей и счет твоего мобильника всегда будет положительным! |
| Пригласи друзей и счет твоего мобильника всегда будет положительным! |
GetTextExtentPoint32
Функция GetTextExtentPoint32 вычисляет ширину и высоту определенной строки текста. Эта функция заменяет функцию GetTextExtentPoint.
BOOL GetTextExtentPoint32(
HDC hdc, // РУЧКА контекста устройства LPCTSTR lpString, // адрес текстовой строки cbString int, // количество символов в адресе строки LPSIZE lpSize // структуры для размера строки );
Параметры
hdc
Идентифицирует контекст устройства.
lpString
Точки на строку текста. Строка не должна быть завершена нуль, поскольку cbString определяет длину строки.
cbString
Определяет количество символов в строке.
lpSize
Точки на РАЗМЕР структуры в которых измерения строки должны быть возвращаны.
Обратные Величины
Если функция добивается успеха, обратная величина ненулевая. Если функция терпит неудачу, обратная величина нулевая. Для того, чтобы расширять информацию ошибки, назовите GetLastError.
Замечания
Функция GetTextExtentPoint32 использует к настоящему времени выбранный шрифт, чтобы вычислять измерения строки. Ширина и высота, на логических устройствах, не вычислены рассматривая любое отсечение. Поскольку некоторые символы ядра устройств, сумма протяженности символов в строке не может равняться протяженности строки. Рассчитанная ширина строки принимается во внимание intercharacter размещая установленное функцией SetTextCharacterExtra.
Смотри Также
GetTextExtentPoint, SetTextCharacterExtra, SIZE
|
|
|
|
| |