Previous Topic: GetFromStateName Method

Next Topic: Execute Method


IsValid Method

Checks if the object is a valid object.

Syntax

object.IsValid()

Owning Class

CaWCrossProjectMerge

Arguments

None

Return Value

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

Example

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