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}{signature:
}
Signature
vb.net
vb.net
Public Property ShowInsertDeleteRevisions() As Boolean
{signature}
{remarks}This option is set to true by default.

MS Word equivalent: Tools menu > 
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#}

Example
Code Block
csharp
csharp
titleC#


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

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


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

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