Resource Base
Table of contents

Enumeration ValidationStatus

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

  • JavaScript
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
}

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: