Name Property

Description

Indicates the current product name of the open OpenText Functional Testing application.

Property type

Read-only property

Syntax

Visual Basic
Public Property Name As String

Return value

  • Versions 23.4 and later: OpenText UFT One

  • Versions 2023 and earlier: Micro Focus UFT One

Example

Return the product name of the open tool

Dim qtApp 'As QuickTest.Application ' Declare the Application object variable
Set qtApp = CreateObject("QuickTest.Application") 'Create a Application object
qtApp.Launch ' Start QuickTest
qtApp.Visible = true

MsgBox qtApp.Name

See Also

Application Object