RevisionGroupText Property |
Namespace: Aspose.Words
Document doc = new Document(MyDir + "Revisions.docx"); Console.WriteLine("Revision groups count: {0}\n", doc.Revisions.Groups.Count); // Get info about all of revisions in document foreach (RevisionGroup group in doc.Revisions.Groups) { Console.WriteLine("Revision author: {0}; Revision type: {1} \nRevision text: {2}", group.Author, group.RevisionType, group.RevisionType); }