IsObject

PowerBuilder Native Interface

IPB_Value interface:

IsObject method

Description

Syntax

IsObject( )

Return Values

Examples

if( ci->pArgs->GetAt(i)->IsObject()) 
{
   if (ci->pArgs->GetAt(i)->IsNull())
      pArguments[i].obj_val = 0;
   else
      pArguments[i].obj_val =
         ci->pArgs->GetAt(i)->GetObject();
     continue;
}
...

See Also