23 lines
407 B
C#
23 lines
407 B
C#
namespace AyCode.Blazor.Components.Components.Grids;
|
|
|
|
/// <summary>
|
|
/// Represents the current edit state of the MgGrid
|
|
/// </summary>
|
|
public enum MgEditState
|
|
{
|
|
/// <summary>
|
|
/// No edit operation in progress
|
|
/// </summary>
|
|
None,
|
|
|
|
/// <summary>
|
|
/// Adding a new row
|
|
/// </summary>
|
|
New,
|
|
|
|
/// <summary>
|
|
/// Editing an existing row
|
|
/// </summary>
|
|
Edit
|
|
}
|