25 lines
321 B
C#
25 lines
321 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|