RevisionsView

Document.RevisionsView property

获取或设置一个值,该值指示是否使用文档的原始版本或修订版本。

public RevisionsView RevisionsView { get; set; }

评论

默认值为.

例子

演示如何在文档的修订视图和原始视图之间切换。

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

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

// 查看文档对象,就好像所有修订都被接受一样。目前支持列表标签。
doc.RevisionsView = RevisionsView.Final;

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

也可以看看