16 lines
262 B
C#
16 lines
262 B
C#
using System;
|
|
using CPF.ReoGrid.Common;
|
|
|
|
namespace CPF.ReoGrid.Events
|
|
{
|
|
public class WorkbookActionEventArgs : EventArgs
|
|
{
|
|
public IAction Action { get; private set; }
|
|
|
|
public WorkbookActionEventArgs(IAction action)
|
|
{
|
|
this.Action = action;
|
|
}
|
|
}
|
|
}
|