RevisionGroup class
RevisionGroup class
Represents a group of sequential Revision objects. To learn more, visit the Track Changes in a Document documentation article.
Properties
Name | Description |
---|---|
author | Gets the author of this revision group. |
revision_type | Gets the type of revisions included in this group. |
text | Returns inserted/deleted/moved text or description of format change. |
Examples
Shows how to print info about a group of revisions in a document.
doc = aw.Document(file_name=MY_DIR + 'Revisions.docx')
self.assertEqual(7, doc.revisions.groups.count)
for group in doc.revisions.groups:
print(f'Revision author: {group.author}; Revision type: {group.revision_type} \n\tRevision text: {group.text}')
See Also
- module aspose.words