---
title: "hasContentDescription"
description: "Returns whether the node's content description contains the given [value].

Note that in merged semantics tree there can be a list of content descriptions that got merged
from the child nodes. Typically an accessibility tooling will decide based on its heuristics
which ones to announce."
type: "function"
---

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


<a id='references'></a>
<div class='sourceset sourceset-common'>Common</div>


```kotlin
fun hasContentDescription(
    value: String,
    substring: Boolean = false,
    ignoreCase: Boolean = false,
): SemanticsMatcher
```


Returns whether the node's content description contains the given `value`.

Note that in merged semantics tree there can be a list of content descriptions that got merged
from the child nodes. Typically an accessibility tooling will decide based on its heuristics
which ones to announce.

#### Parameters

| | |
| --- | --- |
| value | Value to match as one of the items in the list of content descriptions. |
| substring | Whether to use substring matching. |
| ignoreCase | Whether case should be ignored. |




