CasewareDocs

Version

Returns the version of an audit test.

Compatibility

Available as of IDEA version 12.0

Syntax

Version As String

Return Value

Version of Audit Test

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