We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a83b1c commit 671f5beCopy full SHA for 671f5be
1 file changed
Annotation/Set-value-from-PDF-annotation/.NET/Set-value-from-PDF-annotation/Program.cs
@@ -32,8 +32,10 @@
32
if (annotation != null)
33
{
34
// Set custom state and state model
35
- annotation.SetValues("State", "Unknown");
36
- annotation.SetValues("StateModel", "CustomState");
+ annotation.SetValues("State", "Approved");
+ annotation.SetValues("StateModel", "ReviewWorkflow");
37
+ annotation.SetValues("ReviewedBy", "John Doe");
38
+ annotation.SetValues("ReviewedOn", DateTime.Now.ToString("yyyy-MM-dd"));
39
}
40
41
0 commit comments