Page tree
    Created with Raphaël 2.1.0
    Loading...
Skip to end of metadata
Go to start of metadata

Description

Sets or returns a boolean that represents whether or not Word will show revision markup in this document.

C#
public boolean ShowMarkupRevisions{ get; set; }
vb.net
Public Property ShowMarkupRevisions() As Boolean

Remarks

This option is set to true by default.

Examples

C#
//--- Return ShowMarkupRevisions
bool showMarkupRevisions = changeTracking.ShowMarkupRevisions;
 
//--- Set ShowMarkupRevisions
changeTracking.ShowMarkupRevisions = false;
vb.net
'--- Return ShowMarkupRevisions
Dim showMarkupRevisions As Boolean = changeTracking.ShowMarkupRevisions
 
'--- Set ShowMarkupRevisions
changeTracking.ShowMarkupRevisions = False
  • No labels