Share via


UserDict Property [Excel 2003 VBA Language Reference]

Instructs Microsoft Excel to create a custom dictionary to which new words can be added to, when performing spelling checks on a worksheet. Read/write String.

expression.UserDict

expression Required. An expression that returns one of the objects in the Applies To list.

Example

This example instructs Microsoft Excel to create custom dictionary called "Custom1.dic" in the spelling options feature and notifies the user.

Sub SpecialWord()

    Application.SpellingOptions.UserDict = "Custom1.dic"
    MsgBox "The custom dictionary is currently set to: " _
        & Application.SpellingOptions.UserDict

End Sub

Applies to | SpellingOptions Object