[Tracking revision] Numbering don't applied specific deleted text effect

Hello !
We are a software publisher using your library for our Web application.
And we used Aspose.Word for converting Word to Pdf.

I have this file containing numbering :
Test aspose.docx (16.5 KB)
when i tried to convert to pdf with this specifics value :

  • Markup = “All Markup”
  • DeletedTextEffect = “Hidden”
  • InsertedTextColor = “Blue”

the result is :
Test aspose.pdf (18.9 KB)

We can see on the screen numering is not removed but it’s keep and applied the “Inserted text color”.

FileInfo destination = new FileInfo(dest);
PdfSaveOptions saveOptions = new PdfSaveOptions(){
     SaveFormat = SaveFormat.Pdf,
}


//Specified revision options before convert to PDF
doc.LayoutOptions.RevisionOptions.InsertedTextEffect = RevisionColor.Blue;
doc.LayoutOptions.RevisionOptions.DeletedTextEffect = RevisionTextEffect.Hidden;

if (!destination.Directory.Exists)
    destination.Directory.Create();

doc.Save(destination.FullName, saveOptions);

Thanks by advanced.

@B.Leveille
We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.

Issue ID(s): WORDSNET-28373

You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.

Hello @alexey.noskov,
Do you have any update on this topics ?
Thanks by advanced.

@B.Leveille The issue occurs because “hidden” list label attribute set after applying text effects gets overwritten when deciding if list label should be visible.

Unfortunatly, the issue is postponed for now.

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