ComponentOne DateTimeEditors for UWP
C1.UWP.DateTimeEditors Assembly / C1.Xaml.DateTimeEditors Namespace / C1TimeEditor Class / TextValidationError Event

In This Topic
    TextValidationError Event
    In This Topic
    Occurs when text entered into the C1TimeEditor cannot be parsed or the TimeSpan is not valid to be selected.
    Syntax
    'Declaration
     
    Public Event TextValidationError As System.EventHandler(Of TextValidationErrorEventArgs)
    public event System.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.

    PropertyDescription
    Gets the exception that initially triggered the TextValidationError event.  
    Gets the text being parsed when the TextValidationError event was raised.  
    Gets or sets a value that indicates whether Exception should be thrown.  
    See Also