EnumDisplayMonitors

[This is preliminary documentation and subject to change.]

The EnumDisplayMonitors function enumerates the display monitors that intersect a region formed by the intersection of a specified clipping rectangle and the visible region of a device context. EnumDisplayMonitors calls an application-defined MonitorEnumProc callback function once for each display monitor that intersects the region.

BOOL EnumDisplayMonitors (
  HDC hdc,                   // handle to a display device context 
  LPCRECT lprcClip,          // specifies a clipping rectangle 
  MONITORENUMPROC lpfnEnum,  // pointer to a callback function
  LPARAM dwData              // data passed to the callback function 
);
 

Parameters

hdc
Handle to a display device context that defines the visible region of interest.

If this parameter is NULL, the hdcMonitor parameter passed to the MonitorEnumProc calls will be NULL, and the visible region of interest is the virtual screen that encompasses all the displays on the desktop.

lprcClip
Pointer to a RECT structure that specifies a clipping rectangle. The region of interest is the intersection of the clipping rectangle with the visible region specified by hdc.

If hdc is non-NULL, the coordinates of the clipping rectangle are relative to the origin of the hdc. If hdc is NULL, the coordinates are virtual screen coordinates.

This parameter can be NULL if you don't want to clip the region specified by hdc.

lpfnEnum
Pointer to a MonitorEnumProc application-defined callback function.
dwData
Application-defined data that EnumDisplayMonitors passes directly to the MonitorEnumProc function.

Return Values

If the function succeeds, the return value is nonzero

If the function fails, the return value is zero.

Windows NT: To get extended error information, call GetLastError. .

Remarks

There are two key reasons to call the EnumDisplayMonitors function:

To determine whether all the display monitors in a system share the same color format, call GetSystemMetrics(SM_SAMEDISPLAYFORMAT).

You do not need to use the EnumDisplayMonitors function when a window spans display monitors that have different color formats. You can continue to paint under the assumption that the entire screen has the color properties of the primary monitor. Your windows will look fine. EnumDisplayMonitors just lets you make them look better.

Setting the hdc parameter to NULL lets you use the EnumDisplayMonitors function to obtain a handle and position rectangle for one or more display monitors. The following table shows how the four combinations of NULL and non-NULL hdc and lprcClip values affect the behavior of the EnumDisplayMonitors function:

hdc lprcRect EnumDisplayMonitors Behavior
NULL NULL Enumerates all display monitors.

The callback function receives a NULL HDC.

NULL non-NULL Enumerates all display monitors that intersect the clipping rectangle. Use virtual screen coordinates for the clipping rectangle.

The callback function receives a NULL HDC.

non-NULL NULL Enumerates all display monitors that intersect the visible region of the device context.

The callback function receives a handle to a DC for the specific display monitor.

non-NULL non-NULL Enumerates all display monitors that intersect the visible region of the device context and the clipping rectangle. Use device context coordinates for the clipping rectangle.

The callback function receives a handle to a DC for the specific display monitor.


Examples

To paint in response to a WM_PAINT message, using the capabilities of each monitor, you can use code like this in a window procedure:

case WM_PAINT:
  hdc = BeginPaint(hwnd, &ps);
  EnumDisplayMonitors(hdc, NULL, MyPaintEnumProc, 0);
  EndPaint(hwnd, &ps);

To paint the top half of a window using the capabilities of each monitor, you can use code like this:

GetClientRect(hwnd, &rc);
rc.bottom = (rc.bottom - rc.top) / 2;
hdc = GetDC(hwnd);
EnumDisplayMonitors(hdc, &rc, MyPaintEnumProc, 0);
ReleaseDC(hwnd, hdc);

To paint the entire virtual screen optimally for each display monitor, you can use code like this:

hdc = GetDC(NULL);
EnumDisplayMonitors(hdc, NULL, MyPaintScreenEnumProc, 0);
ReleaseDC(NULL, hdc);

To get information about all of the display monitors, you can use code like this:

EnumDisplayMonitors(NULL, NULL, MyInfoEnumProc, 0);
 

QuickInfo

  Windows NT: Requires version 5.0 or later.
  Windows: Requires Windows 98.
  Windows CE: Unsupported.
  Header: Declared in winuser.h.
  Import Library: Use user32.lib.

See Also

Multiple Display Monitors Overview, Multiple Display Monitors Functions, MonitorEnumProc