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) { } } }