---
title: "PaneAdaptedValue"
description: "The adapted state of a pane. It gives clues to pane scaffolds about if a certain pane should be
composed and how."
type: "class"
---

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


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

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


```kotlin
@ExperimentalMaterial3AdaptiveApi
value class PaneAdaptedValue private constructor(private val description: String)
```


The adapted state of a pane. It gives clues to pane scaffolds about if a certain pane should be
composed and how.


## Companion Object

#### Properties

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


```kotlin
val Expanded = PaneAdaptedValue("Expanded")
```


Denotes that the associated pane should be displayed in its full width and height.



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


```kotlin
val Hidden = PaneAdaptedValue("Hidden")
```


Denotes that the associated pane should be hidden.





