CPF/CPF.ReoGrid/Events/BeforeRangeOperationEventArgs.cs
2024-06-24 10:15:59 +08:00

14 lines
241 B
C#

using System;
namespace CPF.ReoGrid.Events
{
public class BeforeRangeOperationEventArgs : RangeEventArgs
{
public bool IsCancelled { get; set; }
public BeforeRangeOperationEventArgs(RangePosition range) : base(range)
{
}
}
}