Previous Topic: Execute Method

Next Topic: CaWCheckout


IsValid Method

Checks if the object is a valid object.

Syntax

object.IsValid()

Owning Class

CaWCheckin

Arguments

None

Return Value

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

Example

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