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

```kotlin
@ExperimentalMaterial3AdaptiveApi
sealed interface PaneScaffoldPaneScope<Role : PaneScaffoldRole>
```

The pane scope of the current pane under the scope, which provides the pane relevant info like
its role and [PaneMotion](/jetpack-compose/androidx.compose.material3.adaptive/adaptive-layout/interfaces/PaneMotion).

## Properties

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

```kotlin
val paneRole: Role
```

The role of the current pane in the scope.

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

```kotlin
val paneMotion: PaneMotion
```

The specified pane motion of the current pane in the scope.

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

```kotlin
val isInteractable: Boolean
```

Indicates if the pane should be interactable, i.e. focusable, clickable, etc. A pane can be
non-interactable if it's `PaneAdaptedValue.Hidden` or being covered by a scrim casted by a
[PaneAdaptedValue.Levitated](/jetpack-compose/androidx.compose.material3.adaptive/adaptive-layout/classes/PaneAdaptedValue.Levitated) pane.