RevisedPropertiesMark Property

Microsoft Word Visual Basic

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