DataGridView.RowValidated Event
.NET Framework 2.0
Note: This event is new in the .NET Framework version 2.0.
Occurs after a row has finished validating.
Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in system.windows.forms.dll)
DataGridView Members
System.Windows.Forms Namespace
Assembly: System.Windows.Forms (in system.windows.forms.dll)
This event is analogous to the Validated event. Use this event to perform post-processing on a row of values.
For more information about handling events, see Consuming Events.
The following code sample uses this event to clear up any error annotations that may have been left behind after validating the row.
Private Sub RemoveAnnotations(ByVal sender As Object, _ ByVal args As DataGridViewCellEventArgs) _ Handles songsDataGridView.RowValidated For Each cell As DataGridViewCell In _ songsDataGridView.Rows(args.RowIndex).Cells cell.ErrorText = String.Empty Next For Each row As DataGridViewRow In songsDataGridView.Rows row.ErrorText = String.Empty Next End Sub
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Reference
DataGridView ClassDataGridView Members
System.Windows.Forms Namespace