Options.DeletedTextColor Property

Word Developer Reference

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

Syntax

expression.DeletedTextColor

expression   Required. A variable that represents an Options collection.

Remarks

If the DeletedTextColor property is set to wdByAuthor, Word automatically assigns a unique color to each of the first eight authors who revise a document.

Example

This example sets the color of deleted text to bright green.

Visual Basic for Applications
  Options.DeletedTextColor = wdBrightGreen

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

Visual Basic for Applications
  Dim lngTemp As Long

lngTemp = Options.DeletedTextColor

See Also