Spread WPF 17
GrapeCity.Windows.SpreadSheet.UI Namespace / SheetView Class / ValidationError Event


In This Topic
    ValidationError Event (SheetView)
    In This Topic
    Occurs when the applied cell value is invalid.
    Syntax
    'Declaration
     
    Public Event ValidationError As EventHandler(Of ValidationErrorEventArgs)
    'Usage
     
    Dim instance As SheetView
    Dim handler As EventHandler(Of ValidationErrorEventArgs)
     
    AddHandler instance.ValidationError, handler
    public event EventHandler<ValidationErrorEventArgs> ValidationError
    Event Data

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

    PropertyDescription
    Gets the column index.  
    Gets the row index.  
    Gets or sets the policy that the user can set to determine how to process the error.  
    Gets the validator which caused this error. This validator is a copy of the real validator, so any modifications to this validator do not take effect.  
    See Also