UpdateScreenParameter

@Serializable
data class UpdateScreenParameter(val screenId: String, val left: Int? = null, val top: Int? = null, val width: Int? = null, val height: Int? = null, val workAreaInsets: Emulation.WorkAreaInsets? = null, val devicePixelRatio: Double? = null, val rotation: Int? = null, val colorDepth: Int? = null, val label: String? = null, val isInternal: Boolean? = null)

Constructors

Link copied to clipboard
constructor(screenId: String, left: Int? = null, top: Int? = null, width: Int? = null, height: Int? = null, workAreaInsets: Emulation.WorkAreaInsets? = null, devicePixelRatio: Double? = null, rotation: Int? = null, colorDepth: Int? = null, label: String? = null, isInternal: Boolean? = null)

Properties

Link copied to clipboard
val colorDepth: Int? = null

Specifies the screen's color depth in bits.

Link copied to clipboard

Specifies the screen's device pixel ratio.

Link copied to clipboard
val height: Int? = null

The height of the screen in pixels.

Link copied to clipboard
val isInternal: Boolean? = null

Indicates whether the screen is internal to the device or external, attached to the device. Default is false.

Link copied to clipboard
val label: String? = null

Specifies the descriptive label for the screen.

Link copied to clipboard
val left: Int? = null

Offset of the left edge of the screen in pixels.

Link copied to clipboard
val rotation: Int? = null

Specifies the screen's rotation angle. Available values are 0, 90, 180 and 270.

Link copied to clipboard

Target screen identifier.

Link copied to clipboard
val top: Int? = null

Offset of the top edge of the screen in pixels.

Link copied to clipboard
val width: Int? = null

The width of the screen in pixels.

Link copied to clipboard

Specifies the screen's work area.