RevisionsView

RevisionsView enumeration

Allows to specify whether to work with the original or revised version of a document.

public enum RevisionsView

Values

NameValueDescription
Original0Specifies original version of a document.
Final1Specifies revised version of a document.

Examples

Shows how to switch between the revised and the original view of a document.

Document doc = new Document(MyDir + "Revisions at list levels.docx");
doc.UpdateListLabels();

ParagraphCollection paragraphs = doc.FirstSection.Body.Paragraphs;
Assert.That(paragraphs[0].ListLabel.LabelString, Is.EqualTo("1."));
Assert.That(paragraphs[1].ListLabel.LabelString, Is.EqualTo("a."));
Assert.That(paragraphs[2].ListLabel.LabelString, Is.EqualTo(string.Empty));

// View the document object as if all the revisions are accepted. Currently supports list labels.
doc.RevisionsView = RevisionsView.Final;

Assert.That(paragraphs[0].ListLabel.LabelString, Is.EqualTo(string.Empty));
Assert.That(paragraphs[1].ListLabel.LabelString, Is.EqualTo("1."));
Assert.That(paragraphs[2].ListLabel.LabelString, Is.EqualTo("a."));

See Also