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