Previous Topic: GetCreatePackage Method

Next Topic: GetInteractiveMerge Method


GetDeleteVersion Method

Retrieve the current CA Harvest SCM DeleteVersion object.

Syntax

object.GetDeleteVersion()

Owning Class

CaWContext

Arguments

None

Return Value

A CaWDeleteVersion object that represents the current DeleteVersion object if set, null if not set or error.

Example

Dim objDeleteVersion
Set objDeleteVersion = objContext.GetDeleteVersion()
If objDeleteVersion Is Nothing Then
msgbox “Can't get delete version object.”, vbOKonly + vbExclamation, “GetDeleteVersion”
End If