Table of Contents

Class Rect

Namespace
Selenium.WebDriver.BiDi.Cdp.DOM
Assembly
Selenium.WebDriver.BiDi.Cdp.dll

Rectangle.

public sealed record Rect : IEquatable<Rect>
Inheritance
Rect
Implements
Inherited Members

Constructors

Rect(double, double, double, double)

Rectangle.

public Rect(double X, double Y, double Width, double Height)

Parameters

X double

X coordinate

Y double

Y coordinate

Width double

Rectangle width

Height double

Rectangle height

Properties

Height

Rectangle height

public double Height { get; init; }

Property Value

double

Width

Rectangle width

public double Width { get; init; }

Property Value

double

X

X coordinate

public double X { get; init; }

Property Value

double

Y

Y coordinate

public double Y { get; init; }

Property Value

double