Inheritance: System.Collections.CollectionBase
		/// <summary>
		/// Adds the elements of another SelectColumnCollection to the end of this SelectColumnCollection.
		/// </summary>
		/// <param name="items">
		/// The SelectColumnCollection whose elements are to be added to the end of this SelectColumnCollection.
		/// </param>
		public virtual void AddRange(SelectColumnCollection items)
		{
			foreach (SelectColumn item in items)
			{
				List.Add(item);
			}
		}
Beispiel #2
0
 /// <summary>
 /// Adds the elements of another SelectColumnCollection to the end of this SelectColumnCollection.
 /// </summary>
 /// <param name="items">
 /// The SelectColumnCollection whose elements are to be added to the end of this SelectColumnCollection.
 /// </param>
 public virtual void AddRange(SelectColumnCollection items)
 {
     foreach (SelectColumn item in items)
     {
         List.Add(item);
     }
 }
		/// <summary>
		/// Initializes a new instance of the SelectColumnCollection class, containing elements
		/// copied from another instance of SelectColumnCollection
		/// </summary>
		/// <param name="items">
		/// The SelectColumnCollection whose elements are to be added to the new SelectColumnCollection.
		/// </param>
		public SelectColumnCollection(SelectColumnCollection items)
		{
			AddRange(items);
		}
			/// <summary>
			/// 
			/// </summary>
			/// <param name="collection"></param>
			public Enumerator(SelectColumnCollection collection)
			{
				wrapped = ((CollectionBase) collection).GetEnumerator();
			}
Beispiel #5
0
 /// <summary>
 /// Initializes a new instance of the SelectColumnCollection class, containing elements
 /// copied from another instance of SelectColumnCollection
 /// </summary>
 /// <param name="items">
 /// The SelectColumnCollection whose elements are to be added to the new SelectColumnCollection.
 /// </param>
 public SelectColumnCollection(SelectColumnCollection items)
 {
     AddRange(items);
 }
Beispiel #6
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="collection"></param>
 public Enumerator(SelectColumnCollection collection)
 {
     wrapped = ((CollectionBase)collection).GetEnumerator();
 }