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

```kotlin
@ExperimentalMaterial3AdaptiveApi
enum class DockedEdge
```

Represents the edge of a resizable pane that is docked, i.e. the edge that will stay in the same
position during resizing.

For example if the edge is [DockedEdge.Top](/jetpack-compose/androidx.compose.material3.adaptive/adaptive-layout/classes/DockedEdge.Top), the top edge of the pane won't move and the bottom
edge will be moveable to resize the pane.

Note that [DragToResizeState](/jetpack-compose/androidx.compose.material3.adaptive/adaptive-layout/classes/DragToResizeState) only supports resizing along one orientation according to their
[DockedEdge](/jetpack-compose/androidx.compose.material3.adaptive/adaptive-layout/classes/DockedEdge). For example if [DockedEdge.Top](/jetpack-compose/androidx.compose.material3.adaptive/adaptive-layout/classes/DockedEdge.Top) or [DockedEdge.Bottom](/jetpack-compose/androidx.compose.material3.adaptive/adaptive-layout/classes/DockedEdge.Bottom) has been set, the resizing
can only happen along the vertical axis.