SourceGrid.CellCollection.AddRange C# (CSharp) Method

AddRange() public method

Adds the elements of another CellBaseCollection to the end of this CellBaseCollection.
public AddRange ( CellCollection items ) : void
items CellCollection /// The CellBaseCollection whose elements are to be added to the end of this CellBaseCollection. ///
return void
        public virtual void AddRange(CellCollection items)
        {
            foreach (Cells.ICellVirtual item in items)
            {
                this.List.Add(item);
            }
        }

Same methods

CellCollection::AddRange ( Cells items ) : void