|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace Microsoft.AspNetCore.Components.QuickGrid;
/// <summary>
/// Describes the direction in which a <see cref="QuickGrid{TGridItem}"/> column is sorted.
/// </summary>
public enum SortDirection
{
/// <summary>
/// Automatic sort order. When used with <see cref="QuickGrid{TGridItem}.SortByColumnAsync(ColumnBase{TGridItem}, SortDirection)"/>,
/// the sort order will automatically toggle between <see cref="Ascending"/> and <see cref="Descending"/> on successive calls, and
/// resets to <see cref="Ascending"/> whenever the specified column is changed.
/// </summary>
Auto,
/// <summary>
/// Ascending order.
/// </summary>
Ascending,
/// <summary>
/// Descending order.
/// </summary>
Descending,
}
|