Converting doc documents to Accessible and Tagged (WCAG compilant) PDF

hi,
Is it possible to use Aspose.Words or Aspose.PDF (c#) to convert a doc document to a PDF, maitaining the accessibility and tags? (so the PDF is WCAG compiant)

Thanks,
Shahar

@shahar.algotec Sure, you can use Aspose.Words to convert MS Word documents to PDF with accessibility tags. Please use the following code:

Document doc = new Document(@"C:\Temp\in.docx");
PdfSaveOptions opt = new PdfSaveOptions();
opt.Compliance = PdfCompliance.PdfUa1;
doc.Save(@"C:\Temp\out.pdf", opt);