public method IO2GSummaryTable.isCellValid

Brief

Checks whether the cell value can be used or not.

Declaration
C++
virtual bool  isCellValid (int row, int column) = 0

Parameters
row

The index of a row. The index must be between 0 and IO2GGenericTableResponseReader.size() - 1.

column

The index of a column. The index must be between 0 and IO2GTableColumnCollection.size() - 1.

Details

The possible return values are as follows:

true

The cell value in a table has changed since the previous update and is specified in the response. The value can be used.

false

The cell value in a table has not changed since the previous update and is not specified in the response. The value cannot be used.

This returned value can be true or false only in case the table reader is applied to the TablesUpdates response.

Otherwise, the method returns true.

Declared in IO2GGenericTableResponseReader

back