21 lines
452 B
C#
21 lines
452 B
C#
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;
|
|
}
|
|
}
|
|
}
|