---
title: "LiveRegionMode"
description: "The mode of live region. Live region indicates to accessibility services they should
automatically notify the user about changes to the node's content description or text, or to the
content descriptions or text of the node's children (where applicable)."
type: "class"
---

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


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

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


```kotlin
value class LiveRegionMode private constructor(@Suppress("unused") private val value: Int)
```


The mode of live region. Live region indicates to accessibility services they should
automatically notify the user about changes to the node's content description or text, or to the
content descriptions or text of the node's children (where applicable).


## Companion Object

#### Properties

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


```kotlin
val Polite = LiveRegionMode(0)
```


Live region mode specifying that accessibility services should announce changes to this
node.



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


```kotlin
val Assertive = LiveRegionMode(1)
```


Live region mode specifying that accessibility services should interrupt ongoing speech
to immediately announce changes to this node.





