ReplacementList Property

Returns the array of AutoCorrect replacements.

expression.ReplacementList(Index)

Remarks

Use the AddReplacement method to add an entry to the replacement list.

Example

This example searches the replacement list for "Temperature" and displays the replacement entry if it exists.

  repl = Application.AutoCorrect.ReplacementList
For x = 1 To UBound(repl)
    If repl(x, 1) = "Temperature" Then MsgBox repl(x, 2)
Next

See Also