Options.RevisedPropertiesMark Property

Word Developer Reference

Returns or sets the mark used to show formatting changes while change tracking is enabled. Read/write WdRevisedPropertiesMark.

Syntax

expression.RevisedPropertiesMark

expression   Required. A variable that represents an Options collection.

Example

This example causes text with changed formatting to be double-underlined when change tracking is enabled.

Visual Basic for Applications
  Options.RevisedPropertiesMark = _
    wdRevisedPropertiesMarkDoubleUnderline

This example returns the option selected in the Formatting box under Track Changes options on the Track Changes tab in the Options dialog box (Tools menu).

Visual Basic for Applications
  temp = Options.RevisedPropertiesMark

See Also