Options.DeletedTextMark Property

Word Developer Reference

Returns or sets the format of text that is deleted while change tracking is enabled. Read/write WdDeletedTextMark.

Syntax

expression.DeletedTextMark

expression   Required. A variable that represents an Options collection.

Example

This example applies strikethrough formatting to deleted text.

Visual Basic for Applications
  Options.DeletedTextMark = wdDeletedTextMarkStrikeThrough

This example returns the current status of the Mark option under Deleted Text on the Track Changes tab in the Options dialog box.

Visual Basic for Applications
  Dim lngTemp As Long

lngTemp = Options.DeletedTextMark

See Also