Table of Contents

Class ViewportSize

Namespace
Microsoft.Playwright
Assembly
Microsoft.Playwright.dll

View port data.

public class ViewportSize
Inheritance
ViewportSize
Inherited Members

Constructors

ViewportSize()

public ViewportSize()

Properties

Height

page height in pixels.

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

Property Value

int

NoViewport

Disables the viewport.

public static ViewportSize NoViewport { get; }

Property Value

ViewportSize

Width

page width in pixels.

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

Property Value

int