Uiinfrastructure API Docs  
 

PTGrowableSortedArrayWrapper.AddRows Method 

MES- AddRows is the bulk equivalent of AddRow- it lets clients add multiple rows in a bulk operation. NOTE: This method only resorts the array once when adding bulk row. Therefore, this method should be used for adding large numbers of rows instead of calling AddRow() multiple times. AddRow will resort each time, which can get expensive.

public virtual void AddRows(
   object[][] rows
);

Parameters

rows
is an array of row arrays. The first index is the rownum, the second index is the row data. This is a little confusing, but it makes sense- AddRows takes an array of the items passed to AddRow.

See Also

PTGrowableSortedArrayWrapper Class | com.plumtree.uiinfrastructure.arraywrapper Namespace