GetAT
Instantiates the Audit Test Accessor component. This component provides access to basic properties of audit tests.
Compatibility
Available as of IDEA version 12.0
Syntax
GetAT(testId As String) As Object
Parameters
testId
String representation of Id of audit test
Return Value
Returns a new instance of Audit Test Accessor component.
Remarks
Audit Test Accessor component implements the following members:
| Method | Description |
|---|---|
| Id | Returns the ID of audit test. |
| Name | Returns the name of audit test. |
| Version | Returns the version of audit test. |
| LanguageCode | Returns the language of audit test. |
| Parameters | Returns a list of execution parameters of audit test. |
| GetAtExecutor | Returns a new instance of audit test executor component. |
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")
s = "Id: " + at.Id + "; Name: " + at.Name + "; Version: " + at.Version +_
"; Language: " + at.LanguageCode + "; Parameters: " + CStr(params.Count)
MsgBox s
. . .
End Sub