RevisedPropertiesMark Property

Microsoft Word Visual Basic

Show All

RevisedPropertiesMark Property

       

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

WdRevisedPropertiesMark can be one of these WdRevisedPropertiesMark constants.
wdRevisedPropertiesMarkBold
wdRevisedPropertiesMarkColorOnly
wdRevisedPropertiesMarkDoubleUnderline
wdRevisedPropertiesMarkItalic
wdRevisedPropertiesMarkNone
wdRevisedPropertiesMarkStrikeThrough
wdRevisedPropertiesMarkUnderline

expression.RevisedPropertiesMark

expression   Required. An expression that returns an Options object.

Example

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

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).

temp = Options.RevisedPropertiesMark