When using the Annotations property the location and bounds is {X=0,Y=0}, but when i evaluate the value after a breakpoint by clicking the "Result View" the location and bounds properties are shown. Any suggestions?
//Used code for the problem
private void documentview_PointerPressed(object sender, PointerRoutedEventArgs e)
{ var pageR = this.m_loadedDocument.Pages[0];
var resulta = pageR.Annotations[0];
System.Diagnostics.Debug.WriteLine(resulta.Location);
}
regards,
Alex Knijf