Hi,
I am using aspose words for .NET licensed version 19.2. I am trying to show formatting modifications as track changes while being converted to word but after being converted to word I am not able to see those modifications as track changes. Below is my code which I am trying to execute
finalDocument.StartTrackRevisions( trackChange != null ? trackChange.username : "", trackChange != null ? Convert.ToDateTime(trackChange.created) : DateTime.Now );
r.Font.Bold = true;
r.Font.Name = "Arial";
finalDocument.StopTrackRevisions();
Can anyone tell me if I am doing anything wrong in above code.