doc = aw.Document("Table.docx")
table = doc.get_child(aw.NodeType.TABLE, 0, True).as_table()
table_clone = table.clone(True).as_table()
I have the above syntax and I want to copy the Table_clone to another document and …...doc = aw.Document("Table.docx") table = doc.get_child(aw.NodeType...src_doc = aw.Document("Tables.docx") dst_doc = aw.Document()...