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

MS Word equivalent: Tools menu > Options... > Track changes tab > Markup section > Insertions: and Deletions:

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

          //--- Return ShowInsertDeleteRevisions
          bool showInsertDeleteRevisions = changeTracking.ShowInsertDeleteRevisions;

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

          '--- Return ShowInsertDeleteRevisions
          Dim showInsertDeleteRevisions As Boolean = changeTracking.ShowInsertDeleteRevisions

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

{example}