revision_type property

RevisionGroup.revision_type property

Gets the type of revisions included in this group.

@property
def revision_type(self) -> aspose.words.RevisionType:
    ...

Examples

Shows how to print info about a group of revisions in a document.

doc = aw.Document(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