Hi,
I am creating a stampannotation programmatically. When the annotation is moved or its bounds are modified the received StampAnnotationMovedOrResizedEventArgs object has the right values in OldBounds but X and Y values in NewBounds object are always 30
NewBounds: X=30, Y=30, Width=245,875603864735, Height=221,443236714976
I am just doing this :
private void PdfViewer_AnnotationMovedOrResized(object sender, StampAnnotationMovedOrResizedEventArgs args)
{
Rectangle oldBounds = args.OldBounds;
Rectangle newBounds = args.NewBounds;
pdfViewerViewModel.signRect = newBounds;
}
Is there something additional I must do?
Thanks in advance.
Regards,
Jose