ComponentOne InputPanel for WinForms
TypeValidationCompleted Event

C1.Win.C1InputPanel.4 Assembly > C1.Win.C1InputPanel Namespace > InputMaskedTextBox Class : TypeValidationCompleted Event
Fires when InputMaskedTextBox has finished parsing the current value using the ValidatingType property.
Syntax
'Declaration
 
Public Event TypeValidationCompleted As System.Windows.Forms.TypeValidationEventHandler
public event System.Windows.Forms.TypeValidationEventHandler TypeValidationCompleted
Event Data

The event handler receives an argument of type System.Windows.Forms.TypeValidationEventArgs containing data related to this event. The following TypeValidationEventArgs properties provide information specific to this event.

PropertyDescription
Gets or sets a value indicating whether the event should be canceled.  
Gets a value indicating whether the formatted input string was successfully converted to the validating type.  
Gets a text message describing the conversion process.  
Gets the object that results from the conversion of the formatted input string.  
Gets the type that the formatted input string is being validated against.  
See Also