Libraries Property

Supported in UFT One version 2022 and later.

Description

Returns the AAFunctionLibraries object, which is a collection of the function library files associated with the application area.

Property type

Read-only property

Syntax

Visual Basic
Public Property Libraries As AAFunctionLibraries

Example

The following example creates a new application area, adds a function library file to the function library list, and saves the application area.

Copy code
uftApp.NewAppArea "[ALM\Resources] Resources\manual\AA\AA1"
Set AAFunctionLibraries = uftApp.AppArea.Resources.Libraries ' Get the libraries collection object
Dim file1
file1 = "[ALM\Resources] Resources\manual\Add FL to AA\FL1.qfl"
AAFunctionLibraries.Add (file1)
uftApp.AppArea.Save

See Also

Resources Object | Resources Object Members