15 lines
270 B
C#
15 lines
270 B
C#
using System;
|
|
using CPF.ReoGrid.Common;
|
|
|
|
namespace CPF.ReoGrid.Events
|
|
{
|
|
public class BeforeActionPerformEventArgs : WorkbookActionEventArgs
|
|
{
|
|
public bool IsCancelled { get; set; }
|
|
|
|
public BeforeActionPerformEventArgs(IAction action) : base(action)
|
|
{
|
|
}
|
|
}
|
|
}
|