As per my implementation process, I have to get each ICheckmarkValue's IFieldRegion or IPictureObject on custom recognition script-C# for CheckmarkGroup.
Can someone help me with this?
As per my implementation process, I have to get each ICheckmarkValue's IFieldRegion or IPictureObject on custom recognition script-C# for CheckmarkGroup.
Can someone help me with this?
0 out of 0 found this helpful
Comments
1 comment
Please check our sample script for Checkmark rules and Checkmark Groups here: https://help.abbyy.com/en-us/flexicapture/12/distributed_administrator/scripting_rules_ex
Note when you access
Context.Field("Checkmark").Value, it returns bool value. https://help.abbyy.com/en-us/flexicapture/12/standalone_administrator/icheckmarkvalue . The Field type in current situation will be Checkmark: https://help.abbyy.com/en-us/flexicapture/12/distributed_administrator/texportfieldtypeThe following workarounds are often used in C#.
if (Context.Field("FieldName").Value.ToString() == "True") {
//DoSomething
}Please sign in to leave a comment.