CPF/CPF.ReoGrid/CellDataReadonlyException.cs

16 lines
334 B
C#
Raw Normal View History

2024-06-24 10:15:59 +08:00
using System;
namespace CPF.ReoGrid
{
[Serializable]
public class CellDataReadonlyException : OperationOnReadonlyCellException
{
public CellPosition CellPos { get; private set; }
public CellDataReadonlyException(CellPosition pos) : base("Attempt to modify the data of read-only cell.")
{
this.CellPos = pos;
}
}
}