19 lines
467 B
C#
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;
|
|
}
|
|
}
|
|
}
|