Sets or returns a boolean that represents whether or not Word will show insert and delete revisions in this document.

 public boolean ShowInsertDeleteRevisions{ get; set; }
Public Property ShowInsertDeleteRevisions() As Boolean

This option is set to true by default.

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


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

          //--- Set ShowInsertDeleteRevisions
          changeTracking.ShowInsertDeleteRevisions = false;
        

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

          '--- Set ShowInsertDeleteRevisions
          changeTracking.ShowInsertDeleteRevisions = False