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 annotations in this document.

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

This option is set to true by default.

Example
Code Block
csharp
csharp
titleC#

          //--- Return ShowAnnotationRevisions
          bool showAnnotationRevisions = changeTracking.ShowAnnotationRevisions;

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

          '--- Return ShowAnnotationRevisions
          Dim showAnnotationRevisions As Boolean = changeTracking.ShowAnnotationRevisions

          '--- Set ShowAnnotationRevisions
          changeTracking.ShowAnnotationRevisions = False