Range.LanguageID property (Word)
Returns or sets a WdLanguageID constant that represents the language for the specified range. Read/write.
Syntax
expression. LanguageID
expression An expression that represents a Range object.
Remarks
Some of the WdLanguageID constants may not be available to you, depending on the language support (U.S. English, for example) that you've selected or installed.
Example
This example formats the second paragraph in the active document as French and then adds a new custom dictionary that will be used on the French text.
ActiveDocument.Paragraphs(2).Range.LanguageID = wdFrench
Set myDictionary = CustomDictionaries.Add(Filename:="French.dic")
With myDictionary
.LanguageSpecific = True
.LanguageID = wdFrench
End With
See also
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.