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 insert and delete revisions in this document.

Signature
C#
C#
 public boolean ShowInsertDeleteRevisions{ get; set; }
Signature
vb.net
vb.net
Public Property ShowInsertDeleteRevisions() As Boolean
Remarks

This option is set to true by default.

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

Example
Code Block
csharp
csharp
titleC#

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

          //--- Set ShowInsertDeleteRevisions
          changeTracking.ShowInsertDeleteRevisions = false;
        
Code Block
vb.net
vb.net
titlevb.net

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

          '--- Set ShowInsertDeleteRevisions
          changeTracking.ShowInsertDeleteRevisions = False