11 lines
175 B
C#
11 lines
175 B
C#
using System;
|
|
using CPF.ReoGrid.Interaction;
|
|
|
|
namespace CPF.ReoGrid.Events
|
|
{
|
|
public class WorksheetKeyEventArgs : EventArgs
|
|
{
|
|
public KeyCode KeyCode { get; set; }
|
|
}
|
|
}
|