SideSize

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

Структура, определяющая размер сторон

Parameters

left

левая сторона, dimen res

top

верхняя сторона, dimen res

right

правая сторона, dimen res

bottom

нижняя сторона, dimen res

Constructors

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

Properties

Link copied to clipboard
val bottom: Int? = null
Link copied to clipboard
val left: Int? = null
Link copied to clipboard
val right: Int? = null
Link copied to clipboard
val top: Int? = null