Page tree

Versions Compared

Key

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

Excerpt

Returns a WordChangeTracking object that can be used to get and set the change tracking settings for this Document.

{signature}
{example}{code:csharp|title=C#}

          WordChangeTracking oWordChangeTracking = oDocument.ChangeTracking;
        
{code}
{code:vb.net
|title=vb.net
}

          Dim oWordChangeTracking As WordChangeTracking = oDocument.ChangeTracking
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns a [WordChangeTracking|WordChangeTracking] object that can be used to get and set the change tracking settings for this [Document|Document].{excerpt}
{signature:C#}
 public WordChangeTracking ChangeTracking{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property ChangeTracking() As WordChangeTracking
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle