ComponentOne MultiSelect for WinForms
C1.Win.Input Namespace / PostValidationEventArgs Class / PostValidationEventArgs Constructor
The value to validate.
PostValidation object that fired the event.
Error information in case of validation failure. Can be set in event code in PostValidating.

In This Topic
    PostValidationEventArgs Constructor
    In This Topic
    Initializes a new instance of the PostValidationEventArgs class for the specified control.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal value As Object, _
       ByVal postValidation As PostValidation, _
       ByVal errorInfo As ErrorInfo _
    )
    public PostValidationEventArgs( 
       object value,
       PostValidation postValidation,
       ErrorInfo errorInfo
    )

    Parameters

    value
    The value to validate.
    postValidation
    PostValidation object that fired the event.
    errorInfo
    Error information in case of validation failure. Can be set in event code in PostValidating.
    See Also