---
title: "InspectableValue"
description: "A compose value that is inspectable by tools. It gives access to private parts of a value."
type: "interface"
---

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


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

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



```kotlin
@JvmDefaultWithCompatibility
interface InspectableValue
```


A compose value that is inspectable by tools. It gives access to private parts of a value.


## Properties

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


```kotlin
val inspectableElements: Sequence<ValueElement>
```


The elements of a compose value.



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


```kotlin
val nameFallback: String?
```


Use this name as the reference name shown in tools of this value if there is no explicit
reference name given to the value.  a modifier in a modifier list.



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


```kotlin
val valueOverride: Any?
```


Use this value as a readable representation of the value.




