23 references to items
System.Windows.Forms (23)
winforms\Managed\System\WinForms\DataGridViewCellCollection.cs (23)
50return this.items.Contains(value); 57return this.items.IndexOf(value); 107this.items.CopyTo(array, index); 114get {return this.items.Count;} 135return this.items.GetEnumerator(); 153return this.items; 165return (DataGridViewCell) this.items[index]; 187DataGridViewCell oldDataGridViewCell = (DataGridViewCell) this.items[index]; 188this.items[index] = dataGridViewCell; 229return (DataGridViewCell) this.items[dataGridViewColumn.Index]; 283int index = this.items.Add(dataGridViewCell); 335this.items.AddRange(dataGridViewCells); 354foreach (DataGridViewCell dataGridViewCell in this.items) 358this.items.Clear(); 365this.items.CopyTo(array, index); 374int index = this.items.IndexOf(dataGridViewCell); 381return this.items.IndexOf(dataGridViewCell); 397this.items.Insert(index, dataGridViewCell); 405this.items.Insert(index, dataGridViewCell); 438int itemsCount = this.items.Count; 441if (this.items[i] == cell) 472DataGridViewCell dataGridViewCell = (DataGridViewCell) this.items[index]; 473this.items.RemoveAt(index);