I am using Adobe InDesign CC.
I have a few images which are added as links in InDesign documents.
I want to read the location i.e X & Y co ordinates of those links on the document.
Following is my c# code to get all links. But I don't know how to get the co ordinates
var links = activeDoc.Links;
foreach (var l in links)
{
var link = (InDesign.Link)l;
}
Or is there any other way?