createStdArray( )

Creates a standard array that can be passed to JavaScript.

Interface
PODSAvantGo
IDL definition
nometadata PODSArray createStdArray(PODSUInt32 size);
JavaScript synopsis

Not applicable

C synopsis
PODSArray* PODScreateStdArray(
  PODSAvantGo* avantgo,
  PODSUInt32 size
);
Parameters
  • avantgo   The PODSAvantGo object.

  • size   [in] Size of the array to be created.

Returns

Standard array of specified size.

Remarks

Methods to manipulate the array before passing it to JavaScript are provided by the PODSArray object. After using createStdArray( ), you need to call the array setter to initialize the array. See Indexed properties.

See also

PODSArray object