ISLanguageUtils.GetUILanguage

Description

This function returns the user interface language of the current configuration.

Syntax

object.GetUILanguage()

Part Attribute Type Description
object Required
The object always implements the ISLanguageUtils interface

Return Value

string

Returns the user interface language of the current configuration.

Example

Display some information about the current configuration, including the user interface language.

Dim aLanguageUtils
Dim aMessage

Set aLanguageUtils = Profile.LanguageUtils

aMessage =_
  aLanguageUtils.FormatStr2("The current configuration has ""%0:s"" UI language and ""%1:s"" DB language",_
  aLanguageUtils.GetUILanguage, aLanguageUtils.GetDBLanguage)
   
Profile.MsgBox(aMessage)  
Note:

Version information

Added in v7.9.0