var filePath = @“C:\TEMP\test.rtf”;
AsposeWords.FileFormatInfo info = AsposeWords.FileFormatUtil.DetectFileFormat(filePath);
AsposeWords.LoadOptions loadOptions = new AsposeWords.LoadOptions();
loadOptions.LoadFormat = AsposeWords.LoadFormat.Rtf;
AsposeWords.Document doc = new AsposeWords.Document(filePath, loadOptions);
MemoryStream ms = new MemoryStream();
doc.Save(ms, AsposeWords.SaveFormat.Pdf);
AsposePdf.Document pdfDocument = new AsposePdf.Document(ms);
AsposePdf.ExcelSaveOptions excelsave = new AsposePdf.ExcelSaveOptions();
pdfDocument.Save(@"C:\TEMP\PDFToXLS_out.xls", excelsave);
Thank you for replying and helping me out.
I tried this code but In excel output seems to be different. I was expecting a two bullet point but it didn’t showed up there.
I have also tried to convert into HTML first and then used Cell.HtmlString but there also I didn’t get the bullets.
Can you help me on this please. Or any other way I can do it?