@@ -622,6 +622,12 @@ public class AsposeWordUtil {
return doc;
}
+ /**
+ * 找到word中表格下标
+ * @param doc 文档
+ * @param table 表格
+ * @return 下标
+ */
public static int findTableIndex(Document doc, Table table) {
int index = 0;
for (Object t : doc.getChildNodes(NodeType.TABLE, true)) {