Source set: Common
public class ProgressBarRangeInfo(
public val current: Float,
public val range: ClosedFloatingPointRange<Float>,
/*@IntRange(from = 0)*/
public val steps: Int = 0,
)
Accessibility range information, to represent the status of a progress bar or seekable progress bar.
Parameters
| current | current value in the range. Must not be NaN. |
| range | range of this node |
| steps | if greater than 0, specifies the number of discrete values, evenly distributed between across the whole value range. If 0, any value from the range specified can be chosen. Cannot be less than 0. |
Functions
equals
Source set: Common
override fun equals(other: Any?): Boolean
hashCode
Source set: Common
override fun hashCode(): Int
toString
Source set: Common
override fun toString(): String
Members
Companion
Source set: Common
public companion object
Properties
Indeterminate
Source set: Common
public val Indeterminate: ProgressBarRangeInfo = ProgressBarRangeInfo(0f, 0f..0f)
Accessibility range information to present indeterminate progress bar