Xceed Grid for WinForms v4.3 Documentation
ValidatingText Event


Xceed.Editors.v2.6 Assembly > Xceed.Editors Namespace > TextBoxArea Class : ValidatingText Event
Raised when the Text is being validated after it has passed the basic mask validation.
Syntax
'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.

PropertyDescription
Gets the text to validate.  
Gets a boolean value indicating if the EditText should be fully or partially validated.  
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