Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

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



{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}
Signature
C#C#
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}{signature:vb.net
vb.net
}
Public Property ShowInsertDeleteRevisions() As Boolean
Remarks

This option is set to true by default.

MS Word equivalent: Tools menu >
{signature}
{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
csharpcsharp
titleC#
Code Block
vb.nettitle