CPF/CPF.ReoGrid/Events/CellAfterEditEventArgs.cs
2024-06-24 10:15:59 +08:00

19 lines
346 B
C#

using System;
using CPF.ReoGrid.DataFormat;
namespace CPF.ReoGrid.Events
{
public class CellAfterEditEventArgs : CellEventArgs
{
public object NewData { get; set; }
public EndEditReason EndReason { get; set; }
public CellDataFormatFlag? DataFormat { get; set; }
public CellAfterEditEventArgs(Cell cell) : base(cell)
{
}
}
}