SetContentsSizeParameter

@Serializable
data class SetContentsSizeParameter(val windowId: Int, val width: Int? = null, val height: Int? = null)

Constructors

Link copied to clipboard
constructor(windowId: Int, width: Int? = null, height: Int? = null)

Properties

Link copied to clipboard
val height: Int? = null

The window contents height in DIP. Assumes current height if omitted. Must be specified if 'width' is omitted.

Link copied to clipboard
val width: Int? = null

The window contents width in DIP. Assumes current width if omitted. Must be specified if 'height' is omitted.

Link copied to clipboard

Browser window id.