public event EventHandler<TextValidationErrorEventArgs> TextValidationError
Event Data
The event handler receives an argument of type TextValidationErrorEventArgs containing data related to this event. The following TextValidationErrorEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Exception | Gets the exception that initially triggered the TextValidationError event. |
Text | Gets the text being parsed when the TextValidationError event was raised. |
ThrowException | Gets or sets a value that indicates whether Exception should be thrown. |
See Also