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}{signature:
}
Signature
vb.net
vb.net
Public Property ShowAnnotationRevisions() As Boolean
{signature}
{remarks}This option is set to true by default.

{remarks}
{example}{code:csharp|title=C#}
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} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}


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

          '--- Set ShowAnnotationRevisions
          changeTracking.ShowAnnotationRevisions = False
        
{code} {example}