DataGridView.UpdateCellErrorText(Int32, Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Forces the cell at the specified location to update its error text.
public:
void UpdateCellErrorText(int columnIndex, int rowIndex);
public void UpdateCellErrorText (int columnIndex, int rowIndex);
member this.UpdateCellErrorText : int * int -> unit
Public Sub UpdateCellErrorText (columnIndex As Integer, rowIndex As Integer)
Parameters
- columnIndex
- Int32
The column index of the cell to update, or -1 to indicate a row header cell.
- rowIndex
- Int32
The row index of the cell to update, or -1 to indicate a column header cell.
Exceptions
columnIndex
is less than -1 or greater than the number of columns in the control minus 1.
-or-
rowIndex
is less than -1 or greater than the number of rows in the control minus 1.
Remarks
Use this method when you maintain cell error text yourself by handling the CellErrorTextNeeded event. Call this method when you change the stored error text for the specified cell. This will invalidate the cell, forcing the DataGridView control to retrieve the updated error text through the CellErrorTextNeeded event handler.
Although you can use this method to update errors for header cells, column header cells do not display error glyphs.