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

19 lines
282 B
C#

namespace Radzen;
/// <summary>
/// Frozen Column Position enum
/// </summary>
public enum FrozenColumnPosition
{
/// <summary>
/// Freeze column to the left
/// </summary>
Left,
/// <summary>
/// Freeze column to the right
/// </summary>
Right
}