MONITORINFO
struct MONITORINFO
The MONITORINFO structure contains information about a display monitor.The GetMonitorInfo function stores information in a MONITORINFO structure or a MONITORINFOEX structure.The MONITORINFO structure is a subset of the MONITORINFOEX structure.
using System.CodeDom.Compiler;
using Windows.Win32.Foundation;
namespace Windows.Win32.Graphics.Gdi
{
[GeneratedCode("Microsoft.Windows.CsWin32", "0.3.151+58e949951d.RR")]
internal struct MONITORINFO
{
internal uint cbSize;
internal RECT rcMonitor;
internal RECT rcWork;
internal uint dwFlags;
}
}