CPF/CPF.ReoGrid/OutlineException.cs

25 lines
321 B
C#
Raw Normal View History

2024-06-24 10:15:59 +08:00
using System;
namespace CPF.ReoGrid
{
[Serializable]
public class OutlineException : ReoGridException
{
public int Start { get; set; }
public int Count { get; set; }
public int End
{
get
{
return this.Start + this.Count;
}
}
public OutlineException(string msg) : base(msg)
{
}
}
}