CPF/CPF.ReoGrid/Events/CellKeyDownEventArgs.cs
2024-06-24 10:15:59 +08:00

12 lines
199 B
C#

using System;
namespace CPF.ReoGrid.Events
{
public class CellKeyDownEventArgs : WorksheetKeyEventArgs
{
public Cell Cell { get; set; }
public CellPosition CellPosition { get; set; }
}
}