Previous Topic: Execute Method

Next Topic: CaWConcurrentMerge


IsValid Method

Checks if the object is a valid object.

Syntax

object.IsValid()

Owning Class

CaWCheckout

Arguments

None

Return Value

A boolean - True if the object is a valid object otherwise False.

Example

Dim objCheckout
Set objCheckout = objContext.GetCheckout()
If objCheckout.IsValid() <> 0 Then
msgbox “This is a valid object”, vbOKonly, “Test Checkout”
End If