Example #1
0
File: Column.cs Project: npenin/uss
		/// <summary>
		/// Adds the elements of another ColumnCollection to the end of this ColumnCollection.
		/// </summary>
		/// <param name="items">
		/// The ColumnCollection whose elements are to be added to the end of this ColumnCollection.
		/// </param>
		public virtual void AddRange(ColumnCollection items)
		{
			foreach (Column item in items)
			{
				this.List.Add(item);
			}
		}
Example #2
0
File: Column.cs Project: npenin/uss
			/// <summary>
			/// 
			/// </summary>
			/// <param name="collection"></param>
			public Enumerator(ColumnCollection collection)
			{
				this.wrapped = ((CollectionBase)collection).GetEnumerator();
			}
Example #3
0
File: Column.cs Project: npenin/uss
		/// <summary>
		/// Initializes a new instance of the ColumnCollection class, containing elements
		/// copied from another instance of ColumnCollection
		/// </summary>
		/// <param name="items">
		/// The ColumnCollection whose elements are to be added to the new ColumnCollection.
		/// </param>
		public ColumnCollection(ColumnCollection items)
		{
			this.AddRange(items);
		}