AtlHiMetricToPixel
Convertit une taille d'objet en unités HIMETRIC (chaque unité est de 0,01 millimètres) à une taille en pixels à l'écran.
Important
Cette fonction ne peut pas être utilisée dans les applications qui s'exécutent dans Windows Runtime.
extern void AtlHiMetricToPixel(
const SIZEL* lpSizeInHiMetric,
LPSIZEL lpSizeInPix
);
Paramètres
lpSizeInHiMetric
[in] Pointeur vers la taille de l'objet en unités HIMETRIC.lpSizeInPix
[out] Pointeur vers l'emplacement où la taille d'objet en pixels doit être retournée.
Exemple
// m_sizeExtent is a member of CComControlBase that holds the
// control's extents in HIMETRIC units.
// Use AtlHiMetricToPixel to find the extent of the control in pixels.
AtlHiMetricToPixel(&m_sizeExtent, &sz);
ATLTRACE("Width = %d, Height = %d\n", sz.cx, sz.cy);
Configuration requise
Header: atlwin.h