Hi all.
Question: is it possible to translate (back and forth) mouse coordinates in RadPdfViewer to PDF coordinates on the relative page?
I do not need location inside Telerik internal document representation nor on screen but on the PDF representation for interoperability with other tools.
What I mean by PDF coordinates: a coordinate system where the unit is 1/72th of an inch, having the origin (coordinate 0,0) at the bottom left of the page, and X Y increase toward the top right corner, for example an A4 bottom left coordinates are (0,0) top right (597.6 , 842.4)
The desired effect would be something like
public (int pageNo, float pdfX, float pdfY) GetPdfCoordinates(RadPdfViewer viewer, Point mouseEventLocation){
public (int pageNo, int X, int Y) GetViewerCoordinates(RadPdfViewer viewer, int page, float pdfX, float pdfY);
Reasons: I am currently using other libraries only for that specific purpose but the telerik pdf viewer is just as good except for this important feature that allows software to interoperate with third parties PDF tools.
Thank you all.