14 lines
241 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|