Find a specific Table (after a bookmark) in open xml
问题 I have a document with multiple tables in it. I need to fill some of those tables. The problem im having is how do i locate them? I can interate through them var doc = document.MainDocumentPart.Document; var tables= doc.Body.Elements< Table >(); But how do i find a specific table? The table can change so i cant rely on the order. I was thinking of placing a bookmark ahead of the specific table and just locate the first table after the bookmark, but i have failed to find out how to do that...