FlexGrid for WinForms | ComponentOne
C1.Win.C1FlexGrid Namespace / C1FlexGridBase Class / GetEditorErrorInfo Event

In This Topic
    GetEditorErrorInfo Event (C1FlexGridBase)
    In This Topic
    Fires when ShowErrors is set to true and the editor validation failed.
    Syntax
    'Declaration
     
    
    Public Event GetEditorErrorInfo As EventHandler(Of GetErrorInfoEventArgs)
    public event EventHandler<GetErrorInfoEventArgs> GetEditorErrorInfo
    Event Data

    The event handler receives an argument of type GetErrorInfoEventArgs containing data related to this event. The following GetErrorInfoEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets the index of the column that may contain errors (or -1 if checking for row errors).  
    Gets or sets a message that describes the error.  
    Gets the index of the row that may contain errors.  
    See Also