Languages object (Word)

A collection of Language objects that represent languages used for proofing or formatting in Word.

Remarks

Use the Languages property to return the Languages collection. The following example displays the localized name for each language.

For Each la In Languages 
 Msgbox la.NameLocal 
Next la

Use Languages (index) to return a single Language object, where index can be the value of the Name property, the value of the NameLocal property, one of the WdLanguageID constants, or one of the MsoLanguageID constants. (For the list of valid MsoLanguageID constants, see the Object Browser in the Visual Basic Editor.)

The Count property returns the number of languages for which you can mark text (languages for which proofing tools are available). To check proofing, you must install the appropriate tools for each language you intend to check. You need both a .dll file and an .lex file for each of the following: the thesaurus, spelling checker, grammar checker, and hyphenation tools.

If you mark text as wdNoProofing, Word skips the marked text when running a spelling or grammar check. To mark text for a specified language or for no proofing, use the Set Language command.

See also

Word Object Model Reference

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.