'Declaration Public Event PreValidated As C1.Win.C1Input.PreValidationEventHandler
public event C1.Win.C1Input.PreValidationEventHandler PreValidated
Event Data
The event handler receives an argument of type C1.Win.C1Input.PreValidationEventArgs containing data related to this event. The following PreValidationEventArgs properties provide information specific to this event.
Property | Description |
---|---|
ErrorInfo | Error information in case of validation failure. Can be set in event code in PreValidating. |
PreValidation | PreValidation object that fired the event. |
Succeeded | Validation result (assigned in the event code in PreValidating). Default: True. |
Text | The text to validate. |
See Also