SourceGrid.CellCollection.Contains C# (CSharp) Method

Contains() public method

Determines whether a specfic Cells.ICellVirtual value is in this CellBaseCollection.
public Contains ( Cells value ) : bool
value Cells /// The Cells.ICellVirtual value to locate in this CellBaseCollection. ///
return bool
        public virtual bool Contains(Cells.ICellVirtual value)
        {
            return this.List.Contains(value);
        }