Xceed Grid for WinForms v4.3 Documentation
ValidatingTextEventArgs Constructor


Xceed.Editors.v2.6 Assembly > Xceed.Editors Namespace > ValidatingTextEventArgs Class : ValidatingTextEventArgs Constructor
The text to validate.
true if the text should be validated according to all the necessary criteria (for example, Mask, MinValue, and MaxValue); false if it should be validated only according to the Mask.
true if the EditText is valid; false otherwise.
Initializes a new instance of the ValidatingTextEventArgs specifying the text to validated, if it should be fully or partially validated, and if it is valid.
Syntax
'Declaration
 
Public Function New( _
   ByVal editText As String, _
   ByVal fullValidation As Boolean, _
   ByVal valid As Boolean _
)
'Usage
 
Dim editText As String
Dim fullValidation As Boolean
Dim valid As Boolean
 
Dim instance As New ValidatingTextEventArgs(editText, fullValidation, valid)
public ValidatingTextEventArgs( 
   string editText,
   bool fullValidation,
   bool valid
)

Parameters

editText
The text to validate.
fullValidation
true if the text should be validated according to all the necessary criteria (for example, Mask, MinValue, and MaxValue); false if it should be validated only according to the Mask.
valid
true if the EditText is valid; false otherwise.
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

Reference

ValidatingTextEventArgs Class
ValidatingTextEventArgs Members