Hi,
I am new to Aspose API and my issue is track changes are not appear in PDF as msword.
In PDF, Changed line and Formatted info not displaying.
And how we can retain Changed line and accept other?
Kindly help.
Thanks.
Hi,
I am new to Aspose API and my issue is track changes are not appear in PDF as msword.
In PDF, Changed line and Formatted info not displaying.
And how we can retain Changed line and accept other?
Kindly help.
Thanks.
Hi Murali,
Hi Team,
Please find attached source code and sample document .
My requirement is, I have a docx document with track changes(insertion, deletion and formatted).
I want to accept only the changes(insertion or deletion text) not the line(Vertical line). The vertical line should be retain in both in pdf and msword.
In short words, the pdf and msword should be like final document but the document should retain lines(Vertical lines).
Thanks.
Hi Murali,
Hi Murali,
Hi Awais Hafeezv,
Thanks for support. Please find attached file for input and expected output.
Thanks.
Hi Murali,
foreach (Revision rev in doc.Revisions)
{
if (rev.RevisionType == RevisionType.FormatChange || rev.RevisionType == RevisionType.Deletion)
{
rev.Accept();
}
}
doc.Save(MyDir + @"out.pdf");
The issues you have found earlier (filed as WORDSNET-9569) have been fixed in this .NET update and this Java update.