Table of Contents

Class BoxModel

Namespace
PuppeteerSharp
Assembly
PuppeteerSharp.dll

Represents boxes of the element.

public class BoxModel
Inheritance
BoxModel

Properties

Border

Gets the Border box.

public BoxModelPoint[] Border { get; set; }

Property Value

BoxModelPoint[]

Content

Gets the Content box.

public BoxModelPoint[] Content { get; set; }

Property Value

BoxModelPoint[]

Height

Gets the element's height.

public int Height { get; set; }

Property Value

int

Margin

Gets the Margin box.

public BoxModelPoint[] Margin { get; set; }

Property Value

BoxModelPoint[]

Padding

Gets the Padding box.

public BoxModelPoint[] Padding { get; set; }

Property Value

BoxModelPoint[]

Width

Gets the element's width.

public int Width { get; set; }

Property Value

int