IBusinessObjectArray IcreateBusinessObjectArray(string busObjName);
An IBusinessObjectArray object to hold the new business object array.
The Server Access Methods creates a business object array and sends it back to the access client. The IcreateBusinessObjectArray() method returns an IBusinessObjectArray object. Other methods in the IBusinessObjectArray interface allow you to manipulate the business object array.
The following example creates a business object array:
// Declare the array IBusinessObjectArray exampleObjArray = null; // Create the business object array that holds "CustomerAcct" // business objects exampleObjArray = accessSession.IcreateBusinessObjectArray("CustomerAcct");