I'm using PdfNet (C#) for Winforms.
I want to be able to underline text, so i created an underline annotation like this:
Annot underlineAnnot = Annot.Create(m_document, Annot.Type.e_Underline, rect)
underlineAnnot.SetFlag(Annot.Flag.e_read_only);
according to this page, it's not possible to move a readonly annotation: https://www.pdftron.com/pdfnet/docs/PDFNet/html/T_pdftron_PDF_Annot_Flag.htm
But when i move it with the toolmode e_annot_edit, it actually does move...
how can I 'lock' an annotation so that it doesn't react to mouse events?