A collection of elements of type Cells.ICellVirtual
Inheritance: System.Collections.CollectionBase
Ejemplo n.º 1
0
		/// <summary>
		/// Adds the elements of another CellBaseCollection to the end of this CellBaseCollection.
		/// </summary>
		/// <param name="items">
		/// The CellBaseCollection whose elements are to be added to the end of this CellBaseCollection.
		/// </param>
		public virtual void AddRange(CellCollection items)
		{
			foreach (Cells.ICellVirtual item in items)
			{
				this.List.Add(item);
			}
		}
Ejemplo n.º 2
0
		/// <summary>
		/// Initializes a new instance of the CellBaseCollection class, containing elements
		/// copied from another instance of CellBaseCollection
		/// </summary>
		/// <param name="items">
		/// The CellBaseCollection whose elements are to be added to the new CellBaseCollection.
		/// </param>
		public CellCollection(CellCollection items)
		{
			this.AddRange(items);
		}
Ejemplo n.º 3
0
 /// <summary>
 /// Initializes a new instance of the CellBaseCollection class, containing elements
 /// copied from another instance of CellBaseCollection
 /// </summary>
 /// <param name="items">
 /// The CellBaseCollection whose elements are to be added to the new CellBaseCollection.
 /// </param>
 public CellCollection(CellCollection items)
 {
     this.AddRange(items);
 }
Ejemplo n.º 4
0
			/// <summary>
			/// 
			/// </summary>
			/// <param name="collection"></param>
			public Enumerator(CellCollection collection)
			{
				this.wrapped = ((System.Collections.CollectionBase)collection).GetEnumerator();
			}
Ejemplo n.º 5
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="collection"></param>
 public Enumerator(CellCollection collection)
 {
     this.wrapped = ((System.Collections.CollectionBase)collection).GetEnumerator();
 }