CasewareDocs
New in Caseware Cloud Engagements 2026-05See what's new

Name

Returns the name of the audit test.

Compatibility

Available as of IDEA version 12.0

Syntax

Name As String

Return Value

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