* Locate the `a:tbl` element inside a graphicFrame. * Path: `a:graphic > a:graphicData > a:tbl`
(frameNode: SafeXmlNode)
| 76 | * Path: `a:graphic > a:graphicData > a:tbl` |
| 77 | */ |
| 78 | function findTable(frameNode: SafeXmlNode): SafeXmlNode { |
| 79 | const graphic = frameNode.child('graphic') |
| 80 | const graphicData = graphic.child('graphicData') |
| 81 | return graphicData.child('tbl') |
| 82 | } |
| 83 | |
| 84 | /** |
| 85 | * Extract the table style ID from tblPr. |