Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Description

Excerpt

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

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

This option is set to true by default.

Example
Code Block
csharp
csharp
titleC#

          //--- Return ShowMarkupRevisions
          bool showMarkupRevisions = changeTracking.ShowMarkupRevisions;

          //--- Set ShowMarkupRevisions
          changeTracking.ShowMarkupRevisions = false;
        
Code Block
vb.net
vb.net
titlevb.net

          '--- Return ShowMarkupRevisions
          Dim showMarkupRevisions As Boolean = changeTracking.ShowMarkupRevisions

          '--- Set ShowMarkupRevisions
          changeTracking.ShowMarkupRevisions = False