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
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:vb.net}
Public Property ShowAnnotationRevisions() As Boolean
{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}