Displays the internal data storage array of the DataList to the Debug Window. If the DataList is sorted, the underlying array will not be sorted, since the data itself is not sorted, but rather a pointer to the row is sorted.
The sort order pointer will be shown at left. It shows the underlying row index that is the sorted row in that position in the list, eg. if the first value if 56, that means the underlying row 56 holds the data for the first row in the sorted list.
Display the type of each column along with the data
Limit the display to this many rows
Dim lst As New xf_DataList lst.AddSQLResultsetDbConn xf.DbConnect, "SELECT * FROM Shippers" lst.PrintVals_Internal Printing 3 Rows: ( 3 Columns) /1:ShipperID /2:CompanyName /3:Phone /1:ShipperID /2:CompanyName /3:Phone i:1 (1) /1:1 /2:Speedy Express /3:(503) 555-9831 i:2 (2) /1:2 /2:United Package /3:(503) 555-3199 i:3 (3) /1:3 /2:Federal Shipping /3:(503) 555-9931