GetSystemMetricsForDpi function

Retrieves the specified system metric or system configuration setting taking into account a provided DPI.

Syntax


int WINAPI GetSystemMetricsForDpi(
  _In_ int  nIndex,
  _In_ UINT dpi
);

Parameters

nIndex [in]

The system metric or configuration setting to be retrieved. See GetSystemMetrics for the possible values.

dpi [in]

The DPI to use for scaling the metric.

Return value

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

This function returns the same result as GetSystemMetrics but scales it according to an arbitrary DPI you provide if appropriate.

Requirements

Minimum supported client

Windows 10 [desktop apps only]

Minimum supported server

None supported

Header

Winuser.h (include Windows.h)

Library

User32.lib

DLL

User32.dll

 

 

Show: