Interface IMonitor
- Namespace
- Whim
- Assembly
- Whim.dll
Represents a single display device.
public interface IMonitor
Properties
Bounds
The bounds of the monitor.
IRectangle<int> Bounds { get; }
Property Value
Handle
The handle of the monitor.
HMONITOR Handle { get; }
Property Value
IsPrimary
true if the monitor is the primary monitor.
bool IsPrimary { get; }
Property Value
Name
The name of the monitor.
string Name { get; }
Property Value
ScaleFactor
The scale factor of this monitor.
int ScaleFactor { get; }
Property Value
WorkingArea
The working area of this monitor.
IRectangle<int> WorkingArea { get; }
Property Value
Remarks
The working area is the desktop area of the display, excluding taskbars,
docked windows, and docked tool bars.