Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

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

Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns a {{boolean}} that represents whether or not Word will show annotations in this document.{excerpt}
{signature:C#}
 public boolean ShowAnnotationRevisions{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property ShowAnnotationRevisions() As Boolean
Remarks

This option is set to true by default.

{signature}
{remarks}This option is set to true by default.

{remarks}
{example}{code:csharp|title=C#}

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

          //--- Set ShowAnnotationRevisions
          changeTracking.ShowAnnotationRevisions = false;
        
{code}
{code:vb.net
|title=vb.net
}

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

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

{example}
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle