WorkAreaInsets

@Serializable
data class WorkAreaInsets(val top: Int? = null, val left: Int? = null, val bottom: Int? = null, val right: Int? = null)

Constructors

Link copied to clipboard
constructor(top: Int? = null, left: Int? = null, bottom: Int? = null, right: Int? = null)

Properties

Link copied to clipboard
val bottom: Int? = null

Work area bottom inset in pixels. Default is 0;

Link copied to clipboard
val left: Int? = null

Work area left inset in pixels. Default is 0;

Link copied to clipboard
val right: Int? = null

Work area right inset in pixels. Default is 0;

Link copied to clipboard
val top: Int? = null

Work area top inset in pixels. Default is 0;