Hi Syncfusion Team,
I'm a newbie programmer and my goal is to add newly added annotations to different layers of the Pdf document
I load the Pdf document and I create 2 layers
PdfLoadedDocument ldoc = new PdfLoadedDocument(buffer);
PdfLayer layer1 = ldoc.Layers.Add("Layer1");
PdfLayer layer2 = ldoc.Layers.Add("Layer2");
pdfViewer.LoadDocument(ldoc);
Is there a simple way to choose the layer in which the newly added annotations will be added?
Thank you in advance
Roberto