Returns if the given languages are supported by the dictionary.

Syntax:

SupportsLanguages( SourceLanguage As String,TargetLanguage As String ) As Boolean
Return: Boolean
Parameters: SourceLanguage Source language to be checked.
TargetLanguage Target language to be checked.

Example:
Dim Dicts As Dictionaries
Dim Dict As Dictionary
Dim RetVal As Boolean

Set Dicts = Application.Dictionaries
Set Dict = Dicts.Item(1)

RetVal = Dict.SupportsLanguages("en-us", "fr")

See also:

Class Dictionary


Last Updated: 04/26/05