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. |
This function converts, or maps, the specified dialog box units to screen units, or pixels. The function replaces the coordinates in the specified RECTstructure with the converted coordinates, which allows the structure to be used to create a dialog box or position a control within a dialog box.
BOOL MapDialogRect( HWND hDlg , LPRECT lpRect );
Parameters
Return Values
Nonzero indicates success. Zero indicates failure. To get extended error information, call GetLastError.
Remarks
The MapDialogRectfunction assumes that the initial coordinates in the RECTstructure represent dialog box units. To convert these coordinates from dialog box units to pixels, the function retrieves the current horizontal and vertical base units for the dialog box, then applies the following formulas:
left = (left * baseunitX) / 4 right = (right * baseunitX) / 4 top = (top * baseunitY) / 8 bottom = (bottom * baseunitY) / 8
The base units for the dialog box are the same as those retrieved by using the GetDialogBaseUnitsfunction.
If one of the dimensions specified in the RECTstructure is not a multiple of four, MapDialogRectalways results in a rectangle that one pixel more for that dimension.
Requirements
Runs on | Versions | Defined in | Include | Link to |
---|---|---|---|---|
Windows CE OS | 1.0 and later | Winuser.h | Dlgmgr.lib |
Note This API is part of the complete Windows CE OS package as provided by Microsoft. The functionality of a particular platform is determined by the original equipment manufacturer (OEM) and some devices may not support this API.
See Also
CreateDialog, CreateDialogIndirect, CreateDialogIndirectParam, CreateDialogParam, DialogBox, DialogBoxIndirect, DialogBoxIndirectParam, DialogBoxParam, GetDialogBaseUnits, GetLastError, RECT