Hello,
I am working on a project that use PDF Viewer component to add/edit annotations. The app needs to save annotations when close document, and restore them when open same document.
The 2 functions ExportAnnotation() and ImportAnnotation() works well and does what expected. However, the exported data is a base 64 encoded JSON that serialized product of Internal classes. The C# "internal" classes make it difficult to serialize/deserialize annotation objects from the outside.
I am wondering there is a way to access these classes and bring back the annotation objects.
Thank you,