Table of contents

Enumeration ValidationStatus

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

  • C++
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;

Is this page helpful?

YesYes NoNo