TypeValidationEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.1.0.0)
Provides data for the TypeValidationCompleted event.
- C#
- VB.NET
public class TypeValidationEventArgs : CancelEventArgs
Public Class TypeValidationEventArgs
Inherits CancelEventArgs
Constructors
TypeValidationEventArgs(validatingType, isValidInput, returnValue, message)
Initializes a new instance of the TypeValidationEventArgs class.
| Name | Type | Description |
|---|---|---|
| validatingType | Type | The Type that the formatted input string was being validated against. |
| isValidInput | Boolean | A Boolean value indicating whether the formatted string was successfully converted to the validating type. |
| returnValue | Object | An Object that is the result of the formatted string being converted to the target type. |
| message | String | A String containing a description of the conversion process. |
Properties
IsValidInput
Boolean: Returns whether the formatted input string was successfully converted to the validating type.
Message
String: Returns a text message describing the conversion process.
ReturnValue
Object: Returns the result from the conversion of the formatted input string.
ValidatingType
Type: Returns the type that the formatted input string is being validated against.
Used By
| Name | Description |
|---|---|
| TypeValidationEventHandler | Represents the method that will handle the TypeValidationCompleted event of the MaskedTextBox control. |