ScrollIntoViewIfNeededParameter

@Serializable
data class ScrollIntoViewIfNeededParameter(val nodeId: Int? = null, val backendNodeId: Int? = null, val objectId: String? = null, val rect: DOM.Rect? = null)

Constructors

Link copied to clipboard
constructor(nodeId: Int? = null, backendNodeId: Int? = null, objectId: String? = null, rect: DOM.Rect? = null)

Properties

Link copied to clipboard
val backendNodeId: Int? = null

Identifier of the backend node.

Link copied to clipboard
val nodeId: Int? = null

Identifier of the node.

Link copied to clipboard
val objectId: String? = null

JavaScript object id of the node wrapper.

Link copied to clipboard
val rect: DOM.Rect? = null

The rect to be scrolled into view, relative to the node's border box, in CSS pixels. When omitted, center of the node will be used, similar to Element.scrollIntoView.