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 revision markup in this document.{excerpt}
{signature:C#}
 public boolean ShowMarkupRevisions{ get; set; }
{signature}{signature:vb.net}
Public Property ShowMarkupRevisions() As Boolean
{signature}
{remarks}This option is set to true by default.

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

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

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

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

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

{example}