Resources Property
Description
Returns the Resources object, which enables you to specify the resources associated with the application area.
Property type
Syntax
Visual Basic |
---|
Public Property Resources As Resources |
Example
The following example creates a new application area, adds a function library file, and saves the application area.
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