Skip to content

DrawerDirection

Namespace: Hex1b.Widgets

Assembly: Hex1b.dll

Specifies the direction a drawer expands toward when opened.

csharp
public enum DrawerDirection

Fields

Down

Drawer expands downward (typically first child in VStack).

Returns: DrawerDirection

csharp
Down = 2

Left

Drawer expands leftward (typically last child in HStack).

Returns: DrawerDirection

csharp
Left = 1

Drawer expands rightward (typically first child in HStack).

Returns: DrawerDirection

csharp
Right = 0

Up

Drawer expands upward (typically last child in VStack).

Returns: DrawerDirection

csharp
Up = 3

Released under the MIT License.