using System; namespace CPF.ReoGrid.Events { public class CellBeforeEditEventArgs : CellEventArgs { public bool IsCancelled { get; set; } public string EditText { get; set; } public CellBeforeEditEventArgs(Cell cell) : base(cell) { } } }