16 lines
257 B
C#
16 lines
257 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|