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