moel@345: using System;
moel@345: using System.Collections.Generic;
moel@345: using System.Text;
moel@345: using System.Collections.ObjectModel;
moel@345: 
moel@345: namespace Aga.Controls.Tree
moel@345: {
moel@345: 	/*internal class ColumnCollection: Collection<Column>
moel@345: 	{
moel@345: 		public int TotalWidth
moel@345: 		{
moel@345: 			get
moel@345: 			{
moel@345: 				int res = 0;
moel@345: 				foreach (Column c in Items)
moel@345: 					res += c.Width;
moel@345: 				return res;
moel@345: 			}
moel@345: 		}
moel@345: 	}*/
moel@345: }