1 instantiation of DataGridViewCellCollection
System.Windows.Forms (1)
System\Windows\Forms\Controls\DataGridView\DataGridViewRow.cs (1)
1140return new DataGridViewCellCollection(this);
10 references to DataGridViewCellCollection
System.Windows.Forms (10)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (1)
19770DataGridViewCellCollection newRowCells = newRow.Cells;
System\Windows\Forms\Controls\DataGridView\DataGridViewRow.cs (5)
25private DataGridViewCellCollection? _rowCells; 53public DataGridViewCellCollection Cells => _rowCells ??= CreateCellsInstance(); 1106DataGridViewCellCollection cells = Cells; 1138protected virtual DataGridViewCellCollection CreateCellsInstance() 1796DataGridViewCellCollection cells = Cells;
System\Windows\Forms\Controls\DataGridView\DataGridViewRowCollection.cs (4)
676DataGridViewCellCollection dgvcc = dataGridViewRow.Cells; 1715DataGridViewCellCollection dgvcc = dataGridViewRow.Cells; 2245DataGridViewCellCollection cells = dataGridViewRow.Cells; 2270DataGridViewCellCollection cells = dataGridViewRow.Cells;