Table of Contents

Class ElementHandleBoundingBoxResult

Namespace
Microsoft.Playwright
Assembly
Microsoft.Playwright.dll
public class ElementHandleBoundingBoxResult
Inheritance
ElementHandleBoundingBoxResult
Inherited Members

Constructors

ElementHandleBoundingBoxResult()

public ElementHandleBoundingBoxResult()

Properties

Height

the height of the element in pixels.

[Required]
[JsonPropertyName("height")]
public float Height { get; set; }

Property Value

float

Width

the width of the element in pixels.

[Required]
[JsonPropertyName("width")]
public float Width { get; set; }

Property Value

float

X

the x coordinate of the element in pixels.

[Required]
[JsonPropertyName("x")]
public float X { get; set; }

Property Value

float

Y

the y coordinate of the element in pixels.

[Required]
[JsonPropertyName("y")]
public float Y { get; set; }

Property Value

float