Word Quick Parts and Comments

Hi, using your Aspose.Words control, can I create “Word Quick Parts” and “Comments”?

Hi

Thanks for your inquiry. Yes you can insert “Quick Parts” (fields) using Aspose.Words. Please follow the link to learn how to achieve this:
https://reference.aspose.com/words/net/aspose.words/documentbuilder/insertfield/
You can also insert comments using Aspose.Words:
https://reference.aspose.com/words/net/aspose.words/comment/
Please let me know if you need more assistance, I will be glad to help you.
Best regards,

Thanks for your quick reply. One other question… does Aspose support MS Word “table of contents”?

Hi Todd,
Thanks for your inquiry.
You can learn how to insert a table of contents in your document at the bottom of this article here. You can then populate the TOC by calling the two methods below.

doc.UpdateFields();
doc.UpdatePageLayout();

Thanks,