'Declaration
Public Event GridError As GridErrorEventHandler
public event GridErrorEventHandler GridError
Event Data
The event handler receives an argument of type GridErrorEventArgs containing data related to this event. The following GridErrorEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Col | Gets the column index of the cell where the error was detected. |
Exception | Gets the Exception object that contains information about the error. |
Handled | Gets or sets a value indicating whether the error situation has been handled by the control. |
Row | Gets the row index of the cell where the error was detected. |
See Also