Hi,
I need to add a new boolean value verified to the exported field of my Document Definitions which should be false by default, or true if the document passed through verification for whatever reason.
I am looking for a way to make this (a custom script stage into workflow?).
Could you help me please?
Thank you very much!
Bye
Comments
1 comment
Hello,
You can use a special property VerifiedBy of the Document like this (C#):
if( Document.Property("VerifiedBy" != string.Empty)
{
//write "1"
}
If this property is not empty, the document has passed the verification.
Please see the article "Appendix > Using scripts in ABBYY FlexiCapture > Scripts for customizing processing stages > Objects >IDocument" for info about Properties.
Hope it helps,
Alexey
Please sign in to leave a comment.