Files
radzen-blazor/Radzen.Blazor/FrozenColumnPosition.cs

19 lines
282 B
C#
Raw Normal View History

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
}