Convert Word DOC Document with Heading 1 Numbering (or Alphabets) Style Lists using C# .NET

When we are opening and saving this particular doc file with Aspose in C# (We are not doing any operations between), heading 1, heading styles are changing from numbers to alphabets. We are not knowing reason for this. Please guide us

string FileIn = @“C:\Users\raja_c\Downloads\3.2.S.2.4 Analytical Transfer Summary Report - rajsave_input.doc”;
string FileOut = @“C:\Users\raja_c\Downloads\3.2.S.2.4 Analytical Transfer Summary Report - rajsave_output.doc”;
License license = new License();
license.SetLicense(“Aspose.Total.lic”);
Document doc = new Document(FileIn);
doc.Save(FileOut);

sample file.zip (44.2 KB)

@crshekharam,

After an initial test with the licensed latest (20.5) version of Aspose.Words for .NET, we were unable to reproduce this issue on our end. Please see the output DOC document generated on our end by using the following simple C# code:

C# Code:

Document doc = new Document("E:\\Temp\\sample file\\3.2.S.2.4 Analytical Transfer Summary Report - rajsave_input.doc");
doc.Save("E:\\Temp\\sample file\\20.5.doc");

So, we suggest you please upgrade to the latest version. Hope, this helps.