mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
39 lines
805 B
C#
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
|
|
}
|
|
|