Retention of MS Word accessiblity tags in doc to pdf conversion

Does Aspose allow for the retention of MS Word accessiblity tags in doc to pdf conversion?

Hi Steve,

Thanks for your inquiry. Yes, Aspose.Words supports ‘Document structure tags for accessibility’. Please use PdfSaveOptions.ExportDocumentStructure property to set a value to export document structure as shown below. Please let us know if you have any more queries.

Document doc = new Document(MyDir + "in.docx");
PdfSaveOptions options = new PdfSaveOptions();
options.ExportDocumentStructure = true;
doc.Save(MyDir + "Out.pdf", options);