Generate tagged PDF from ASPOSE Word

Hi Team,
I am using ASPOSE word to generate word docs, now wanted to convert doc stream into tagged accessible PDF. Can you please help me out how we can achieve this while using ASPOSE.Word.

@asoory To get tagged PDF you need to specify PdfA2a compliance option or set PdfSaveOptions.DisplayDocTitle and PdfSaveOptions.ExportDocumentStructure to export document structure. Please see the following code example:

PdfSaveOptions opt = new PdfSaveOptions();
opt.ExportDocumentStructure = true;
opt.DisplayDocTitle = true;

or

opt.Compliance = PdfCompliance.PdfA2a;

The issues you have found earlier (filed as WORDSNET-6614) have been fixed in this Aspose.Words for .NET 22.1 update also available on NuGet.