CPF/CPF.ReoGrid/Events/CellAfterEditEventArgs.cs

19 lines
346 B
C#
Raw Permalink Normal View History

2024-06-24 10:15:59 +08:00
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)
{
}
}
}