Version

ValidationStatus Enumeration

Constants which define the result of a validation session.
Syntax
'Declaration
 
Public Enum ValidationStatus 
   Inherits System.Enum
public enum ValidationStatus : System.Enum 
Members
MemberDescription
ConditionFailureThe Condition was not met.
ConversionFailureThe value to be validated could not be converted into a value of the type specified by the DataType property.
EditorValueInvalidThe embeddable editor'sIsValid property currently returns false, precluding further validation. Note that this value applies only to embeddable editors, and only when the editor's IsInEditMode property returns true.
ProgrammaticFailureThe validation passed all internally defined criteria, but a listener of the Validating event set the IsValid property of the event arguments to false.
ValidThe validation succeeded. If IsRequired was set to true, the required field condition was met. If IsRequired was not set to true, or the required field condition was met, and the Condition was met.
ValueNullOrEmptyThe validation failed because the IsRequired property was set to true, but the end user left the value at null or empty, as defined by the EmptyValueCriteria property.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, 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