19 lines
346 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|