14 lines
293 B
C#
14 lines
293 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid.Events
|
|
{
|
|
public class BeforeCopyOrMoveRangeEventArgs : CopyOrMoveRangeEventArgs
|
|
{
|
|
public bool IsCancelled { get; set; }
|
|
|
|
public BeforeCopyOrMoveRangeEventArgs(RangePosition fromRange, RangePosition toRange) : base(fromRange, toRange)
|
|
{
|
|
}
|
|
}
|
|
}
|