RevisionType
RevisionGroup.RevisionType property
Gets the type of revisions included in this group.
public RevisionType RevisionType { get; }
Examples
Shows how to print info about a group of revisions in a document.
Document doc = new Document(MyDir + "Revisions.docx");
Assert.AreEqual(7, doc.Revisions.Groups.Count);
foreach (RevisionGroup group in doc.Revisions.Groups)
{
Console.WriteLine(
$"Revision author: {group.Author}; Revision type: {group.RevisionType} \n\tRevision text: {group.Text}");
}
See Also
- enum RevisionType
- class RevisionGroup
- namespace Aspose.Words
- assembly Aspose.Words