InsertedTextMark Property

TrackRevisions

WdInsertedTextMark can be one of these WdInsertedTextMark constants.
wdInsertedTextMarkBold
wdInsertedTextMarkColorOnly
wdInsertedTextMarkDoubleUnderline
wdInsertedTextMarkItalic
wdInsertedTextMarkNone
wdInsertedTextMarkStrikeThrough
wdInsertedTextMarkUnderline

expression.InsertedTextMark

expression Required. An expression that returns an Options object.

Remarks

The ShowRevisions property must be True in order to see the formatting for inserted text during editing. The PrintRevisions property must be True in order for Word to use the formatting for inserted text when printing a document.

Example

This example sets Word to italicize inserted text.

Options.InsertedTextMark = wdInsertedTextMarkItalic

This example sets Word to format inserted text as bold if it isn't already.

If Options.InsertedTextMark <> wdInsertedTextMarkBold Then
    Options.InsertedTextMark = wdInsertedTextMarkBold
Else
    MsgBox Prompt:="Inserted text is already bold!"
End If

Applies to | Options Object

See Also | DeletedTextMark Property | InsertedTextColor Property