Previous Topic: CaWUDP

Next Topic: UseVersionList Property


UsePackageList Property

Gets or sets a boolean value for whether to pass the UDP process a Package List which would be expanded by the [PACKAGE] system variable.

Syntax

object.UsePackageList = [value]

Owning Class

CaWUDP

Arguments

value - A boolean that indicates using packages in package chooser or not.

Notes

Example

Dim objUDP
Dim objPackageChooser
Set objUDP = objContext.GetUDP()
Set objPackageChooser = objContext.GetPackageChooser()
objPackageChooser.Clear()
objPackageChooser.SetPackageName(objContext.GetPackageName())
objPackageChooser.Execute()
objUDP.UsePackageList = True
objUDP.Execute()

More information: