Graphics::MeasureString(constWCHAR*,INT,constFont*,constRectF&,RectF*) method (gdiplusgraphics.h)
The Graphics::MeasureString method measures the extent of the string in the specified font and layout rectangle.
Syntax
Status MeasureString(
[in] const WCHAR *string,
[in] INT length,
[in] const Font *font,
[in, ref] const RectF & layoutRect,
[out] RectF *boundingBox
);
Parameters
[in] string
Type: const WCHAR*
Pointer to a wide-character string to be measured.
[in] length
Type: INT
Integer that specifies the number of characters in the string array. The length parameter can be set to –1 if the string is null terminated.
[in] font
Type: const Font*
Pointer to a Font object that specifies the family name, size, and style of the font that is applied to the string.
[in, ref] layoutRect
Type: const RectF
Reference to a rectangle that bounds the string.
[out] boundingBox
Type: RectF*
Pointer to a RectF object that receives the rectangle that bounds the string.
Return value
Type: Status
If the method succeeds, it returns OK, which is an element of the Status enumeration.
If the method fails, it returns one of the other elements of the Status enumeration.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows XP, Windows 2000 Professional [desktop apps only] |
Minimum supported server | Windows 2000 Server [desktop apps only] |
Target Platform | Windows |
Header | gdiplusgraphics.h (include Gdiplus.h) |
Library | Gdiplus.lib |
DLL | Gdiplus.dll |