Class Bounds
Browser window bounds information
public sealed record Bounds : IEquatable<Bounds>
- Inheritance
-
Bounds
- Implements
- Inherited Members
Constructors
Bounds()
Browser window bounds information
public Bounds()
Properties
Height
The window height in pixels.
public long? Height { get; init; }
Property Value
- long?
Left
The offset from the left edge of the screen to the window in pixels.
public long? Left { get; init; }
Property Value
- long?
Top
The offset from the top edge of the screen to the window in pixels.
public long? Top { get; init; }
Property Value
- long?
Width
The window width in pixels.
public long? Width { get; init; }
Property Value
- long?
WindowState
The window state. Default to normal.
public WindowState? WindowState { get; init; }