1 instantiation of DataGridViewCellCollection
System.Windows.Forms (1)
System\Windows\Forms\Controls\DataGridView\DataGridViewRow.cs (1)
1136
return new
DataGridViewCellCollection
(this);
11 references to DataGridViewCellCollection
System.Windows.Forms (10)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (1)
19762
DataGridViewCellCollection
newRowCells = newRow.Cells;
System\Windows\Forms\Controls\DataGridView\DataGridViewRow.cs (5)
25
private
DataGridViewCellCollection
? _rowCells;
53
public
DataGridViewCellCollection
Cells => _rowCells ??= CreateCellsInstance();
1102
DataGridViewCellCollection
cells = Cells;
1134
protected virtual
DataGridViewCellCollection
CreateCellsInstance()
1793
DataGridViewCellCollection
cells = Cells;
System\Windows\Forms\Controls\DataGridView\DataGridViewRowCollection.cs (4)
676
DataGridViewCellCollection
dgvcc = dataGridViewRow.Cells;
1715
DataGridViewCellCollection
dgvcc = dataGridViewRow.Cells;
2245
DataGridViewCellCollection
cells = dataGridViewRow.Cells;
2270
DataGridViewCellCollection
cells = dataGridViewRow.Cells;
System.Windows.Forms.Tests (1)
System\Windows\Forms\DataGridViewRowTests.cs (1)
5766
public new
DataGridViewCellCollection
CreateCellsInstance() => base.CreateCellsInstance();