GetString

PowerBuilder Native Interface

IPB_Session interface:

GetString method

Description

Syntax

GetString (pbstring* string)

Return Values

Examples

string proxyName;
{
   pbstring pn = ci->pArgs->GetAt(2)->GetString();

   if (pn == NULL)
   {
      ci->returnValue->SetLong(kInvalidProxyName);
      return PBX_OK;
   }
   else
   {
      proxyName = session->GetString(pn);
   }
}

Usage

See Also