Hi ,
I am manually entering sticky note using below code by applying onClick event.
After clicking on pdf area I am getting stickyNote value on Comment Box but not displaying on pdf screen.
It gets displayed after I clicked the added comment in comment panel…
const rectangleAnnot = new instanceReference.current.Core.Annotations.StickyAnnotation();
rectangleAnnot.PageNumber = 1;
rectangleAnnot.X = coordinate.x;
rectangleAnnot.Y = coordinate.y;
rectangleAnnot.Width = 200;
rectangleAnnot.Height = 50;
rectangleAnnot.setContents(val);