Uut Property (AProgram)

Returns or sets the object UUT name.

Syntax

 Object.Uut [ = sUUT ]

The Uut property syntax has the following parts:

 

Name

Type

Description

Object

AProgram

AProgram object

sUUT

BString

A string specifying the object UUT name

Comments

UUT name is used when ATEasy prints the program information to the test log when a program is started.

Program's UUT can be set in three ways: (1) programmatically during run time (2) during design time set in the program module properties page, (3) (v6) during design time set in the program shortcut properties page.  ATEasy honors UUT name in the above priority.

The UUT name can be multi-line string. (v6)

Example

The following statement illustrates accessing the program's UUT name & serial number:

print "Now testing unit "; Program.Uut; ", serial number "; Program.SerialNumber

The following statement illustrates changing the program's UUT name & serial number:

! ... code to use switch matrix to connect to a different unit ...

Program.Uut = "Fluke 8840"

Program.SerialNumber = "F-123456"

Applies to

AProgram

See Also

SerialNumber