CasewareDocs

Id

Returns the ID of an audit test.

Compatibility

Available as of IDEA version 12.0

Syntax

Id As String

Return Value

String representation of audit test Id

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 "Id: " + at.Id
. . .
End Sub