Files
radzen-blazor/Radzen.Blazor/FabMenuDirection.cs
2025-11-05 14:31:34 +02:00

39 lines
805 B
C#

namespace Radzen;
/// <summary>
/// Specifies the direction in which a RadzenFabMenu expands its items.
/// </summary>
public enum FabMenuDirection
{
/// <summary>
/// The menu items expand upward from the FAB button.
/// </summary>
Top,
/// <summary>
/// The menu items expand downward from the FAB button.
/// </summary>
Bottom,
/// <summary>
/// The menu items expand to the left of the FAB button.
/// </summary>
Left,
/// <summary>
/// The menu items expand to the right of the FAB button.
/// </summary>
Right,
/// <summary>
/// The menu items expand to the start of the FAB button.
/// </summary>
Start,
/// <summary>
/// The menu items expand to the end of the FAB button.
/// </summary>
End
}