AutoCorrect.ReplaceText Property

Excel Developer Reference

True if text in the list of AutoCorrect replacements is replaced automatically. Read/write Boolean.

Syntax

expression.ReplaceText

expression   A variable that represents an AutoCorrect object.

Example

This example turns off automatic text replacement.

Visual Basic for Applications
  With Application.AutoCorrect
    .CapitalizeNamesOfDays = True
    .ReplaceText = False
End With

See Also