SetMapMode function gdi32

int SetMapMode(
  1. int hdc,
  2. int iMode
)

The SetMapMode function sets the mapping mode of the specified device context. The mapping mode defines the unit of measure used to transform page-space units into device-space units, and also defines the orientation of the device's x and y axes.

int SetMapMode(
  HDC hdc,
  int iMode
);

Implementation

int SetMapMode(int hdc, int iMode) => _SetMapMode(hdc, iMode);