8 references to OnAddingRow
System.Windows.Forms (8)
winforms\Managed\System\WinForms\DataGridViewMethods.cs (2)
11223OnAddingRow(dataGridViewRow, dataGridViewRow.State, false /*checkFrozenState*/); 16036OnAddingRow(dataGridViewRow, rowState, false /*checkFrozenState*/);
winforms\Managed\System\WinForms\DataGridViewRowCollection.cs (6)
382this.DataGridView.OnAddingRow(dataGridViewRow, rowState, true /*checkFrozenState*/); // will throw an exception if the addition is illegal 583this.DataGridView.OnAddingRow(dataGridViewRow, dataGridViewRow.State, true /*checkFrozenState*/); // will throw an exception if the addition is illegal 665this.DataGridView.OnAddingRow(rowTemplate, rowState, true /*checkFrozenState*/); // will throw an exception if the addition is illegal 742this.DataGridView.OnAddingRow(rowTemplate, rowTemplateState, true /*checkFrozenState*/); // Done once only, continue to check if this is OK - will throw an exception if the addition is illegal. 772this.DataGridView.OnAddingRow(rowTemplate2, rowTemplateState, true /*checkFrozenState*/); // done only once, continue to check if this is OK - will throw an exception if the addition is illegal 842this.DataGridView.OnAddingRow(dataGridViewRow, rowState, true /*checkFrozenState*/); // will throw an exception if the addition is illegal