---
title: "ProgressBarRangeInfo"
description: "Accessibility range information, to represent the status of a progress bar or seekable progress
bar."
type: "class"
---

<div class='type'>Class</div>


<a id='references'></a>

<div class='sourceset sourceset-common'>Common</div>


```kotlin
class ProgressBarRangeInfo(
    val current: Float,
    val range: ClosedFloatingPointRange<Float>,
    /*@IntRange(from = 0)*/
    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`. |



## Companion Object

#### Properties

<div class='sourceset sourceset-common'>Common</div>


```kotlin
val Indeterminate = ProgressBarRangeInfo(0f, 0f..0f)
```


Accessibility range information to present indeterminate progress bar





