CPF/CPF.ReoGrid/Events/BeforeActionPerformEventArgs.cs

15 lines
270 B
C#
Raw Permalink Normal View History

2024-06-24 10:15:59 +08:00
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)
{
}
}
}