createObject( )

Returns a PODSObject exported by a POD currently loaded in M-Business. This method queries all loaded PODs. It passes the name to each POD and asks if it can provide an object in return. It returns a PODSobject, or NULL if no POD can provide an object with the specified name.

Interface
PODSAvantGo
IDL definition
PODSObject createObject(PODSString name);
JavaScript synopsis
window.createObject(name)
C synopsis
PODSObject* PODSCreateObject(
  PODSWindow* window,
  PODSString name
);
Parameters
  • window   The PODSWindow object.

  • name   [in] The name of the PODSObject to be returned.

Returns

PODSObject corresponding to the specified name.

NULL

If no POD can provide an object with the specified name.

See also

avantgo