using System; namespace CPF.ReoGrid.Core { internal interface IColumnRange { int Col { get; set; } int Cols { get; set; } int EndCol { get; } } }