Synopsis
DataRow.ClearErrors();
Clears all errors for the DataRow
.
Example
The following example demonstrates using the Clear( )
method to clear the errors for a row:
row.ClearErrors();
Note
The ClearErrors( )
method clears all errors set on
the row and on the individual columns within the row, including the
RowError
and errors set on the columns using the
SetColumnError( )
method.