Good evening,
when iterating over a Document’s Nodes / NodeCollection, is there any way to find out what page these Nodes and/or Shapes are on?
Thanks
-JB
Good evening,
Hi Joerg,
LayoutCollector layout = new
LayoutCollector(doc);<o:p></o:p>
foreach (Paragraph paragraph in doc.GetChildNodes(NodeType.Paragraph, true))
{
Console.Out.WriteLine(layout.GetStartPageIndex(paragraph));
…