---
metadata:
  - name: generator
    content: Diplodoc Platform v5.50.3
alternate:
  - https://divkit.tech/docs/en/concepts/divs/2/div-accessibility.md
  - https://divkit.tech/docs/ru/concepts/divs/2/div-accessibility.md
---
> **Documentation Index:** Fetch the complete configuration index at https://divkit.tech/docs/en/llms.txt

# div-accessibility
Accessibility settings.

## Parameters
| Parameters | Description |
| --- | --- |
| `description` | <p>**string**</p><p>Element description. It is used as the main description for screen reading applications.</p><p>Available platforms: Android, iOS, web.</p> |
| `hint` | <p>**string**</p><p>A tooltip of what will happen during interaction. If Speak Hints is enabled in the VoiceOver settings on iOS, a tooltip is played after `description`.</p><p>Available platforms: Android, iOS, web.</p> |
| `is_checked` | <p>**bool_int**</p><p>Shows the current status of the checkbox or toggle: `true` means it's selected, `false` means it isn't selected.</p><p>Available platforms: Android, iOS, web.</p> |
| `mode` | <p>**string**</p><p>The way the accessibility tree is organized. In the `merge` mode the accessibility service perceives an element together with a subtree as a whole. In the `exclude` mode an element together with a subtree isn't available for accessibility.</p><p>Possible values: `default`, `merge`, `exclude`.</p><p>Default value: `default`.</p><p>Available platforms: Android, iOS, web.</p> |
| `mute_after_action` | <p>**bool_int**</p><p>Mutes the screen reader sound after interacting with the element.</p><p>Default value: `false`.</p><p>Available platforms: iOS.</p> |
| `state_description` | <p>**string**</p><p>Description of the current state of an element. For example, in the description you can specify a selected date for a date selection element and an on/off state for a switch.</p><p>Available platforms: Android, iOS, web.</p> |
| `type` | <p>**string**</p><p>Element role. Used to correctly identify an element by the accessibility service. For example, the `list` element is used to group list elements into one element.</p><p>Possible values: `none`, `button`, `image`, `text`, `edit_text`, `header`, `tab_bar`, `list`, `select`, `checkbox`, `radio`, `auto`.</p><p>Default value: `auto`.</p><p>Available platforms: Android, iOS, web.</p> |

<details>
<summary>JSON</summary>

```json
{
  description: "string",
  hint: "string",
  is_checked: "bool_int",
  mode: "string",
  mute_after_action: "bool_int",
  state_description: "string",
  type: "string"
}
```
</details>
