HighlightRectParameter

@Serializable
data class HighlightRectParameter(val x: Int, val y: Int, val width: Int, val height: Int, val color: DOM.RGBA? = null, val outlineColor: DOM.RGBA? = null)

Constructors

Link copied to clipboard
constructor(x: Int, y: Int, width: Int, height: Int, color: DOM.RGBA? = null, outlineColor: DOM.RGBA? = null)

Properties

Link copied to clipboard
val color: DOM.RGBA? = null

The highlight fill color (default: transparent).

Link copied to clipboard
val height: Int

Rectangle height

Link copied to clipboard
val outlineColor: DOM.RGBA? = null

The highlight outline color (default: transparent).

Link copied to clipboard
val width: Int

Rectangle width

Link copied to clipboard
val x: Int

X coordinate

Link copied to clipboard
val y: Int

Y coordinate