Documentation
Table of contents

Enumeration ValidationStatus

ValidationStatus describes the outcome of a validation process on a field.

  • JavaScript
  • Android
  • Objective-C
  • Swift
  • C++
enum EnumValidationStatus {
    /** 
     * Indicates that no validation has been performed.
     */
    VS_NONE = 0,
    /** 
     * Indicates that the validation process was completed successfully.
     */
    VS_SUCCEEDED = 1,
    /** 
     * Indicates that the validation process failed.
     */
    VS_FAILED = 2
}
@Retention(RetentionPolicy.CLASS)
public @interface EnumValidationStatus
{
   /** The field has no validation specified. */
   public static final int VS_NONE = 0;
   /** The validation for the field has been succeeded. */
   public static final int VS_SUCCEEDED = 1;
   /** The validation for the field has been failed. */
   public static final int VS_FAILED = 2;
}
typedef NS_ENUM(NSInteger, DSValidationStatus)
{
   /** The field has no validation specified. */
   DSValidationStatusNone = 0,
   /** The validation for the field has been succeeded. */
   DSValidationStatusSucceeded = 1,
   /** The validation for the field has been failed. */
   DSValidationStatusFailed = 2
};
public enum ValidationStatus : Int
{
   /** The field has no validation specified. */
   none = 0
   /** The validation for the field has been succeeded. */
   succeeded = 1
   /** The validation for the field has been failed. */
   failed = 2
}
typedef enum ValidationStatus
{
   /** The field has no validation specified. */
   VS_NONE,
   /** The validation for the field has been succeeded. */
   VS_SUCCEEDED,
   /** The validation for the field has been failed. */
   VS_FAILED
} ValidationStatus;

This page is compatible for:

Version 1.0

Is this page helpful?

YesYes NoNo

In this article:

latest version

    • Latest version (2.2.20)
    • Version 2.x
      • Version 2.2.10
      • Version 2.2.0
      • Version 2.0.30
      • Version 2.0.20
      • Version 2.0.10
      • Version 2.0.0
    Change +
    © 2003–2024 Dynamsoft. All rights reserved.
    Privacy Statement / Site Map / Home / Purchase / Support