ReplaceText Property

Applies To

AutoCorrect Object.

Description

True if text in the AutoCorrect replacements list is replaced automatically. This property is available only in Microsoft Excel for Windows 95. Read-write.

See Also

ReplacementList Property.

Example

This example turns off automatic text replacement.


With Application.AutoCorrect
    .CapitalizeNamesOfDays = True
    .ReplaceText = False
End With