Sets or returns a boolean that represents whether or not Word will show annotations in this document.

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

This option is set to true by default.


          //--- Return ShowAnnotationRevisions
          bool showAnnotationRevisions = changeTracking.ShowAnnotationRevisions;

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

          '--- Return ShowAnnotationRevisions
          Dim showAnnotationRevisions As Boolean = changeTracking.ShowAnnotationRevisions

          '--- Set ShowAnnotationRevisions
          changeTracking.ShowAnnotationRevisions = False