DataGridViewCellValidatingEventArgs Class
Assembly: System.Windows.Forms (in system.windows.forms.dll)
The DataGridView.CellValidating event lets you cancel changes to the current cell when the new value is not valid. Use the FormattedValue property to determine the current value. To determine the state of the current cell, use the RowIndex and ColumnIndex properties to access the cell through the DataGridView.Rows collection. To cancel the change, set the Cancel property to true.
When this event is canceled in data-bound mode, the new value is not pushed to the underlying data source. When this event is canceled in virtual mode, the DataGridView.CellValuePushed event will not be raised.
The following code example handles the CellValidating event to ensure that only positive integers are entered by the user. This example is part of a larger example available in the VirtualMode reference topic.
private void dataGridView1_CellValidating(object sender, DataGridViewCellValidatingEventArgs e) { dataGridView1.Rows[e.RowIndex].ErrorText = ""; int newInteger; // Don't try to validate the 'new row' until finished // editing since there // is not any point in validating its initial value. if (dataGridView1.Rows[e.RowIndex].IsNewRow) { return; } if (!int.TryParse(e.FormattedValue.ToString(), out newInteger) || newInteger < 0) { e.Cancel = true; dataGridView1.Rows[e.RowIndex].ErrorText = "the value must be a non-negative integer"; } }
private void dataGridView1_CellValidating(Object sender,
DataGridViewCellValidatingEventArgs e)
{
int newInteger = 0;
// Don't try to validate the 'new row' until finished
// editing since there
// is not any point in validating its initial value.
if (dataGridView1.get_Rows().get_Item(
e.get_RowIndex()).get_IsNewRow()) {
return;
}
if (!(Int32.TryParse(e.get_FormattedValue().ToString(), newInteger))
|| newInteger < 0) {
e.set_Cancel(true);
}
} //dataGridView1_CellValidating
System.EventArgs
System.ComponentModel.CancelEventArgs
System.Windows.Forms.DataGridViewCellValidatingEventArgs
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Reference
DataGridViewCellValidatingEventArgs MembersSystem.Windows.Forms Namespace
DataGridView
DataGridView.CellValidating Event
DataGridView.CellValidated Event
DataGridView.CellValuePushed Event
DataGridView.OnCellValidating
DataGridViewCell
DataGridViewCellValidatingEventHandler
FormattedValue
RowIndex
ColumnIndex
CancelEventArgs.Cancel