chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.overlay / HighlightRectRequest

HighlightRectRequest

data class HighlightRectRequest

Request object containing input parameters for the OverlayDomain.highlightRect command.

Constructors

<init>

Request object containing input parameters for the OverlayDomain.highlightRect command.

HighlightRectRequest(x: Int, y: Int, width: Int, height: Int, color: RGBA? = null, outlineColor: RGBA? = null)

Properties

color

The highlight fill color (default: transparent).

val color: RGBA?

height

Rectangle height

val height: Int

outlineColor

The highlight outline color (default: transparent).

val outlineColor: RGBA?

width

Rectangle width

val width: Int

x

X coordinate

val x: Int

y

Y coordinate

val y: Int