LanguageCode
Returns the language of an audit test.
Compatibility
Available as of IDEA version 12.0
Syntax
LanguageCode As String
Return Value
Language of audit test as a two-character code, like “en”, “de” etc.
Example
Sub Main()
Dim ac As Object
Dim at As Object
Set ac = CreateObject("SmartAnalyzer.AutomationClient")
Set at = ac.GetAT("f4d65220-77f1-5969-8943-59c7bd448460")
MsgBox"Language: " + at.LanguageCode
. . .
End Sub