IntPxSize
Kotlin
|Java
@Immutable data class IntPxSize
kotlin.Any | |
↳ | androidx.ui.core.IntPxSize |
A two dimensional size using IntPx for units
Summary
Public methods |
|
---|---|
operator IntPxSize |
Returns an IntPxSize scaled by dividing width and height by other |
operator IntPxSize |
Returns an IntPxSize scaled by multiplying width and height by other |
String |
toString() |
Extension functions |
||||
---|---|---|---|---|
From androidx.ui.core
|
Properties |
|
---|---|
IntPx |
The vertical aspect of the size in IntPx. |
IntPx |
The horizontal aspect of the size in IntPx. |
Public methods
div
inline operator fun div(other: Int): IntPxSize
Returns an IntPxSize scaled by dividing width and height by other
times
inline operator fun times(other: Int): IntPxSize
Returns an IntPxSize scaled by multiplying width and height by other
toString
fun toString(): String