Skip to content

Commit 671f5be

Browse files
committed
952337 Resolved the given feedback.
1 parent 6a83b1c commit 671f5be

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

  • Annotation/Set-value-from-PDF-annotation/.NET/Set-value-from-PDF-annotation

Annotation/Set-value-from-PDF-annotation/.NET/Set-value-from-PDF-annotation/Program.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,10 @@
3232
if (annotation != null)
3333
{
3434
// Set custom state and state model
35-
annotation.SetValues("State", "Unknown");
36-
annotation.SetValues("StateModel", "CustomState");
35+
annotation.SetValues("State", "Approved");
36+
annotation.SetValues("StateModel", "ReviewWorkflow");
37+
annotation.SetValues("ReviewedBy", "John Doe");
38+
annotation.SetValues("ReviewedOn", DateTime.Now.ToString("yyyy-MM-dd"));
3739
}
3840
}
3941
}

0 commit comments

Comments
 (0)