Input for WinForms | ComponentOne
C1.Win.Input Namespace / PreValidationEventArgs Class / PreValidationEventArgs Constructor
The text to validate.
PreValidation object that fired the event.
Error information in case of validation failure. Can be set in event code in PreValidating.

In This Topic
    PreValidationEventArgs Constructor
    In This Topic
    Initializes a new instance of the PreValidationEventArgs class for the specified control.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal text As String, _
       ByVal preValidation As PreValidation, _
       ByVal errorInfo As ErrorInfo _
    )
    public PreValidationEventArgs( 
       string text,
       PreValidation preValidation,
       ErrorInfo errorInfo
    )

    Parameters

    text
    The text to validate.
    preValidation
    PreValidation object that fired the event.
    errorInfo
    Error information in case of validation failure. Can be set in event code in PreValidating.
    See Also