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

29 lines
691 B
C#

namespace Radzen;
/// <summary>
/// Specifies the ways a <see cref="Radzen.Blazor.RadzenSidebar" /> component renders inside RadzenLayout.
/// </summary>
public enum SidebarPosition
{
/// <summary>
/// The RadzenSidebar component is displayed at the start of RadzenLayout.
/// </summary>
Left,
/// <summary>
/// The RadzenSidebar component is displayed at the end of RadzenLayout.
/// </summary>
Right,
/// <summary>
/// The RadzenSidebar component is displayed at the start of RadzenLayout.
/// </summary>
Start,
/// <summary>
/// The RadzenSidebar component is displayed at the end of RadzenLayout.
/// </summary>
End
}