I can't seem to find a sample by Syncfusion. I found one where it's saving an image of the PDF into a word document, but I need my result to be an actual word document where I can read text, parse tables, etc.
I asked ChatGPT, and it gave me this code:
PdfLoadedDocument pdfDocument = new PdfLoadedDocument(pdfPath);
DocIORenderer renderer = new DocIORenderer();
WordDocument docxDocument = renderer.ConvertToWord(pdfDocument);
docxDocument.Save(docxPath);
docxDocument.Close();
pdfDocument.Close(true);
But of course this does not work because renderer.ConvertToWord does not exist. I don't know how ChatGPT came up with "ConvertToWord", because when I search for it on google, I cannot find anything