using System; namespace CPF.ReoGrid.Events { public class CellEditCharInputEventArgs : CellEventArgs { public int InputChar { get; set; } public int CaretPositionInLine { get; private set; } public string InputText { get; private set; } internal CellEditCharInputEventArgs(Cell cell, string text, int @char, int caret) : base(cell) { this.InputText = text; this.InputChar = @char; this.CaretPositionInLine = caret; } } }