public override PSPDFAnnotation[] AnnotationsForPage(uint page)
 {
     Console.WriteLine("*** CustomAnnotationProvider.AnnotationsForPage()");
     var oPSPDFAnnot = new CustomNoteAnnotation()
     {
         Page = page,
         BoundingBox = new RectangleF(70, 750, 32, 32),
         Contents = "A Sticky",
         Editable = true
     };
     return new PSPDFAnnotation[] { oPSPDFAnnot };
 }
        public override PSPDFAnnotation[] AnnotationsForPage(uint page)
        {
            Console.WriteLine("*** CustomAnnotationProvider.AnnotationsForPage()");
            var oPSPDFAnnot = new CustomNoteAnnotation()
            {
                Page        = page,
                BoundingBox = new RectangleF(70, 750, 32, 32),
                Contents    = "A Sticky",
                Editable    = true
            };

            return(new PSPDFAnnotation[] { oPSPDFAnnot });
        }