Hello!
I trying convert a pdf to docx:
using (var doc = new asposePDF.Document(path))
{
DocSaveOptions opt = new DocSaveOptions()
{
Format = DocSaveOptions.DocFormat.DocX,
Mode = DocSaveOptions.RecognitionMode.Flow
};
doc.Save(resPath, opt);
}
Final file has bullet characters and text strings, but mirosoft word doesn't understand, that this lines is bullet list items, and paragraph is bullet list.
Can I get docx file with correct layout?