MONITORINFO

A version of this page is also available for

Windows Embedded CE 6.0 R3

4/8/2010

This structure contains information about a screen.

Syntax

typedef struct tagMONITORINFO {
  DWORD cbSize;
  RECT rcMonitor;
  RECT rcWork;
  DWORD dwFlags;
} MONITORINFO, *LPMONITORINFO;

Members

  • cbSize
    DWORD that contains the size of the structure, in bytes. Set the cbSize member to the value obtained by calling the sizeof operator for this structure before you call the GetMonitorInfofunction. Setting cbSize allows GetMonitorInfo determine the type of structure you are passing to GetMonitorInfo.
  • rcMonitor
    RECT structure that specifies the screen rectangle, expressed in virtual screen coordinates.
  • rcWork
    RECT structure that specifies the work area rectangle of the screen, expressed in virtual screen coordinates.
  • dwFlags
    DWORD that contains flags that represent attributes of the screen. The following table shows a list of possible values.

    Value Description

    0

    This screen is not the primary screen.

    MONITORINFOF_PRIMARY

    This screen is the primary screen.

Remarks

The GetMonitorInfo function stores information in either this structure or MONITORINFOEX structure. MONITORINFO is a subset of MONITORINFOEX, which adds a string member that contains a name for the screen.

Requirements

Header windows.h
Windows Embedded CE Windows CE .NET 4.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also

Reference

GetMonitorInfo
MONITORINFOEX

Other Resources

RECT