Returns whether the language ID is known by RC-WinTrans.

Syntax:

IsKnownLanguageID(LanguageID As Long) As Boolean
Return: Boolean
Parameters: LanguageID Language code for which to check.

Example:
Dim Tool As LanguageTool
Dim LangID As Long
Dim IsKnown As Boolean
    
Set Tool = Application.Tools.LanguageTool
LangID = 1033

IsKnown = Tool.IsKnownLanguageID(LangID)

See also:

Class LanguageTool


Last Updated: 04/26/05