Previous Topic: Execute Method

Next Topic: CaWSwitchPackage


IsValid Method

Checks if the object is a valid object.

Syntax

object.IsValid()

Owning Class

CaWRemoveItem

Arguments

None

Return Value

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

Example

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