How do I get from a Cell to its containing TextTable? Actually, what I need to do is to get from a Bookmark inside a cell to the containing TextTable. bookmark.getAnchor().getText() gives me the containing Cell, but it seems that Cells don't know their containing tables. The only ways I've found (using Xray) are
bookmark.getAnchor().getPropertyValue("TextTable")
but the TextTable property in question seems to be undocumented for the
service TextRange. Is there a better (documented) way?
Matthias
