Example #1
0
		internal void AddColumn(Column column)
		{
			Column c;

			int count = this._array.Count;
			for(int i = 0; i < count; i++)
			{
				c = this._array[i] as Column;

				if(c.Name == column.Name)
				{
					return;
				}
			}

			this._array.Add(column);
		}
		public void Edit(Column obj)
        {
            if (this._currentType == obj.GetType()) return;
            BindGrid(obj.GlobalProperties);
            this._currentType = obj.GetType();
		}
		public void Edit(Column obj)
		{
			BindGrid(obj.GlobalProperties);
		}