'Declaration Public Event GridError As C1.Win.FlexGrid.GridErrorEventHandler
public event C1.Win.FlexGrid.GridErrorEventHandler GridError
Event Data
The event handler receives an argument of type C1.Win.FlexGrid.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 C1.Win.FlexGrid.GridErrorEventArgs.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