'Declaration <DescriptionAttribute("Raised when the Text is being validated after it has passed the basic mask validation.")> <CategoryAttribute("Data")> Public Event ValidatingText As ValidatingTextEventHandler
'Usage Dim instance As TextBoxArea Dim handler As ValidatingTextEventHandler AddHandler instance.ValidatingText, handler
[Description("Raised when the Text is being validated after it has passed the basic mask validation.")] [Category("Data")] public event ValidatingTextEventHandler ValidatingText
Event Data
The event handler receives an argument of type ValidatingTextEventArgs containing data related to this event. The following ValidatingTextEventArgs properties provide information specific to this event.
Property | Description |
---|---|
EditText | Gets the text to validate. |
FullValidation | Gets a boolean value indicating if the EditText should be fully or partially validated. |
Valid | Gets or sets a boolean value indicating if the EditText is valid. |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also