public method O2GTradesTable.forEachRow

Brief

Iterates through the rows of the table and call RowDelegate on each row.

Declaration
C#
void  forEachRow (O2GTable.RowDelegate rowDelegate)

Parameters
rowDelegate

Details

This method is synchronous. The application will wait until each row is processed in specified delegate.

Note: The returned row contains the current values of fields. The values are not automatically updated. To monitor changes, use IO2GTableListener.onChanged. The row interface is thread-safe. One can use the returned row in different threads without synchronization.

Declared in O2GTable

back