Previous Topic: UsePackageList Property

Next Topic: UDPType Property (Read Only)


UseVersionList Property

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

Syntax

object.UseVersionList = [value]

Owning Class

CaWUDP

Arguments

value - A boolean that indicates using versions in version chooser or not.

Notes

Example

Dim objUDP
Dim objVersionChooser
Set objUDP = objContext.GetUDP()
Set objVersionChooser = objContext.GetVersionChooser()
objVersionChooser.Clear()
objVersionChooser.SetItemName(“*.cpp”)
 objVersionChooser.Execute()
objUDP.UseVersionList = True
objUDP.Execute()

More information: