Hi,
I am using aspose word for java, and I have many word documents that i merged in to one document. Using
Document doc = documents.get(0);
for(int i=1;i<documents.size();i++){
doc.appendDocument(documents.get(i),ImportFormatMode.KEEP_SOURCE_FORMATTING);
}
where documents is a List
I want to create a table of contents entry for each document I merged. Is that possible?