Bounds

@Serializable
data class Bounds(val left: Int? = null, val top: Int? = null, val width: Int? = null, val height: Int? = null, val windowState: Browser.WindowState? = null)

Browser window bounds information

Constructors

Link copied to clipboard
constructor(left: Int? = null, top: Int? = null, width: Int? = null, height: Int? = null, windowState: Browser.WindowState? = null)

Properties

Link copied to clipboard
val height: Int? = null

The window height in pixels.

Link copied to clipboard
val left: Int? = null

The offset from the left edge of the screen to the window in pixels.

Link copied to clipboard
val top: Int? = null

The offset from the top edge of the screen to the window in pixels.

Link copied to clipboard
val width: Int? = null

The window width in pixels.

Link copied to clipboard

The window state. Default to normal.