Interface IDisplay
Represents a display that is attached to the system and can contain windows.
Namespace: WinMan
Assembly: WinMan.dll
Syntax
public interface IDisplay
Properties
| Improve this Doc View SourceBounds
The current display bounds.
Declaration
Rectangle Bounds { get; }
Property Value
Type | Description |
---|---|
Rectangle |
Scaling
The current scaling factor assigned to this display.
Declaration
double Scaling { get; }
Property Value
Type | Description |
---|---|
System.Double |
WorkArea
The current work area.
Declaration
Rectangle WorkArea { get; }
Property Value
Type | Description |
---|---|
Rectangle |
Workspace
Declaration
IWorkspace Workspace { get; }
Property Value
Type | Description |
---|---|
IWorkspace |
Events
| Improve this Doc View SourceBoundsChanged
The bounds have changed.
Declaration
event EventHandler<DisplayRectangleChangedEventArgs> BoundsChanged
Event Type
Type | Description |
---|---|
System.EventHandler<DisplayRectangleChangedEventArgs> |
Removed
The display has been removed.
Declaration
event EventHandler<DisplayChangedEventArgs> Removed
Event Type
Type | Description |
---|---|
System.EventHandler<DisplayChangedEventArgs> |
ScalingChanged
The display scaling has changed.
Declaration
event EventHandler<DisplayScalingChangedEventArgs> ScalingChanged
Event Type
Type | Description |
---|---|
System.EventHandler<DisplayScalingChangedEventArgs> |
WorkAreaChanged
The work area has changed.
Declaration
event EventHandler<DisplayRectangleChangedEventArgs> WorkAreaChanged
Event Type
Type | Description |
---|---|
System.EventHandler<DisplayRectangleChangedEventArgs> |