GetAt

PowerBuilder Native Interface

IPB_Arguments interface:

GetAt method

Description

Syntax

GetAt ( pbint index )

Return Values

Examples

PBCallInfo ci;
LPCSTR myPBNIObj = NULL;
IPB_Value* pArg0 = ci->pArgs->GetAt(0);
if (!pArg0->IsNull())
{
   pbstring t = pArg0->GetString();
   if (t != NULL)
      myPBNIObj = session->GetString(t);
}

See Also