Share via


TextRange.LanguageID Property

Publisher Developer Reference

Returns or sets a MsoLanguageID constant that represents the language for the specified object. Read/write.

Syntax

expression.LanguageID

expression   A variable that represents a TextRange object.

Return Value
MsoLanguageID

Remarks

The LanguageID property value can be one of the MsoLanguageID constants declared in the Microsoft Office type library.

Example

This example formats the specified selection as French. This example assumes that the cursor is in a text box.

Visual Basic for Applications
  Sub SetLanguage()
    Selection.TextRange.LanguageID = msoLanguageIDFrench
End Sub

See Also