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

19 lines
467 B
C#

using System;
namespace CPF.ReoGrid
{
public class RangeContainsReadonlyCellsException : OperationOnReadonlyCellException
{
public RangePosition Range { get; set; }
public RangeContainsReadonlyCellsException(RangePosition range) : this(range, "Operation cannot be performed since target range contains read-only cells.")
{
}
public RangeContainsReadonlyCellsException(RangePosition range, string msg) : base(msg)
{
this.Range = range;
}
}
}