ParseAggregate Method
Parses the aggregate returned from another component's ItemAggregate property.
Syntax
public void parseAggregate(String aggregate);
Remarks
This method takes the XML aggregate returned from any bean's ItemAggregate property, and then fills all the properties of this bean. For example:
Invoice.Add()
For (i = 0 to Invoice.ItemCount - 1)
LineItems.ParseAggregate(Invoice.ItemAggregate[0])
Debug.Print(LineItems.ItemName & VbTab & LineItems.Quantity & VbTab & LineItems.Amount)
Next