BiasAlignment.Horizontal
-
Cmn
data class BiasAlignment.Horizontal : Alignment.Horizontal
An Alignment.Horizontal specified by bias: for example, a bias of -1 represents alignment to the start, a bias of 0 will represent centering, and a bias of 1 will represent end. Any value can be specified to obtain an alignment. Inside the -1, 1 range, the obtained alignment will position the aligned size fully inside the available space, while outside the range it will the aligned size will be positioned partially or completely outside.
Summary
Public constructors |
|
|---|---|
Horizontal(bias: Float) |
Cmn
|
Public functions |
||
|---|---|---|
open Int |
align(size: Int, space: Int, layoutDirection: LayoutDirection)Calculates the horizontal position of a box of width |
Cmn
|
open operator Alignment |
plus(other: Alignment.Vertical)Combine this instance's horizontal alignment with |
Cmn
|
Public constructors
Public functions
align
open fun align(size: Int, space: Int, layoutDirection: LayoutDirection): Int
Calculates the horizontal position of a box of width size relative to the left side of an area of width space. The returned offset can be negative or larger than space - size meaning that the box will be positioned partially or completely outside the area.
plus
open operator fun plus(other: Alignment.Vertical): Alignment
Combine this instance's horizontal alignment with other's vertical alignment to create an Alignment.