FormSuite for Invoices v2.1 - Updated
UserValidated Property (FormField)




Accusoft.FSInvoices Namespace > FormField Class : UserValidated Property
Gets and sets the flag that indicates whether a user has validated this field.
Syntax
'Declaration
 
<DataMemberAttribute()>
Public Property UserValidated As Boolean
'Usage
 
Dim instance As FormField
Dim value As Boolean
 
instance.UserValidated = value
 
value = instance.UserValidated
[DataMember()]
public bool UserValidated {get; set;}
[DataMember()]
public: __property bool get_UserValidated();
public: __property void set_UserValidated( 
   bool value
);
[DataMember()]
public:
property bool UserValidated {
   bool get();
   void set (    bool value);
}
Remarks

Setting this field to true will mark the field as validated on the page. After the FormFields have been validated, call TemplateIO's UpdatePageTemplates method to update the template with the validated fields. In future runs, fields that are marked as user validated in the template will be preferred over those that are not marked.

Default: false.

See Also

Reference

FormField Class
FormField Members