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) { } } }