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) { } } }