Hi Team,
I do exported annotation using below code which is working properly. How to import the very GDocs_annotations.xml before the document load.
using (GroupDocs.Annotation.Annotator annotator = new GroupDocs.Annotation.Annotator(path))
{
List<AnnotationBase> annotations = annotator.Get();
XmlSerializer formatter = new XmlSerializer(typeof(List<AnnotationBase>));
using (FileStream fs = new FileStream(@"E:\TEMP\GDocs_annotations.xml", FileMode.Create))
{
fs.SetLength(0);
formatter.Serialize(fs, annotations);
}
}