8 references to OnAddingRow
System.Windows.Forms (8)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (2)
11082OnAddingRow(dataGridViewRow, dataGridViewRow.State, checkFrozenState: false); 15553OnAddingRow(dataGridViewRow, rowState, checkFrozenState: false);
System\Windows\Forms\Controls\DataGridView\DataGridViewRowCollection.cs (6)
234DataGridView.OnAddingRow(dataGridViewRow, rowState, checkFrozenState: true); // will throw an exception if the addition is illegal 417DataGridView.OnAddingRow(dataGridViewRow, dataGridViewRow.State, checkFrozenState: true); // will throw an exception if the addition is illegal 505DataGridView.OnAddingRow(rowTemplate, rowState, checkFrozenState: true); // will throw an exception if the addition is illegal 587DataGridView.OnAddingRow(rowTemplate, rowTemplateState, checkFrozenState: true); // Done once only, continue to check if this is OK - will throw an exception if the addition is illegal. 620DataGridView.OnAddingRow(rowTemplate2, rowTemplateState, checkFrozenState: true); // done only once, continue to check if this is OK - will throw an exception if the addition is illegal 697DataGridView.OnAddingRow(dataGridViewRow, rowState, checkFrozenState: true); // will throw an exception if the addition is illegal