GetType
From PowerBuilder Native Interface
IPB_Value interface:
GetType method
Description
Syntax
GetType()
Return Values
Examples
ArgsType = ci->pArgs->GetAt(i)->GetType();
switch (ArgsType)
{
case pbvalue_int:
if (ci->pArgs->GetAt(i)->IsNull())
pArguments[i].int_val=1;
else
pArguments[i].int_val =
ci->pArgs->GetAt(i)->GetInt();
break;
...