16 lines
334 B
C#
16 lines
334 B
C#
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;
|
|
}
|
|
}
|
|
}
|