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
Width
the width of the element in pixels.
[Required]
[JsonPropertyName("width")]
public float Width { get; set; }
Property Value
X
the x coordinate of the element in pixels.
[Required]
[JsonPropertyName("x")]
public float X { get; set; }
Property Value
Y
the y coordinate of the element in pixels.
[Required]
[JsonPropertyName("y")]
public float Y { get; set; }