SetAt

PowerBuilder Native Interface

PBUnboundedArrayCreator template class:

SetAt method

Description

Syntax

SetAt(pblong pos, ValueType v)
SetAt(pblong pos, LPCTSTR string)
SetAt(pblong pos, pbstring string)

Return Values

Examples

PBUnboundedArrayCreator<I> ac(session);
in >> iarg[i];
for (i=0; i<itemcount1; i++)
   {
     ac.SetAt(i+1, iarg[i]);
   }
out_array = ac.GetArray();

See Also