class O2GTable

Parents
O2GGenericTableResponseReader

Brief

An abstract interface to a table.

Details

The type defined in the fxcore2.dll assembly. The namespace is fxcore2.

Public Properties

Columns

Gets an instance of the class that provides access to the list of table columns.

Count

Gets the number of rows in the reader.

Type

Gets the type of a trading table.

Public Methods

forEachRow

Iterates through the rows of the table and raises event EachRow.

forEachRow

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

getCell

Gets the value of a cell.

getGenericRow

Gets a generic row by its index.

getNextGenericRow

Gets the next row from O2GTable.

getNextGenericRowByColumnValue

Gets the next row from O2GTable based on the column value.

getNextGenericRowByColumnValues

Gets the next row from O2GTable based on any of the column values.

getNextGenericRowByMultiColumnValues

Gets the next row from O2GTable based on the multiple columns values.

getStatus

Gets the status of the table.

isCellChanged

Checks whether the cell is changed.

isCellValid

Checks whether the cell value can be used or not.

subscribeStatus

Subscribes table listener to changes of table status.

subscribeUpdate

Subscribes table listener to table updates.

unsubscribeStatus

Unsubscribes table listener from changes of table status.

unsubscribeUpdate

Unsubscribes table listener from table updates.

Events

RowAdded

The event is fired when a new row appears in the table.

RowChanged

The event is fired when a row is changed.

RowDeleted

The event is fired when a row is deleted.

StatusChanged

The event is fired when the table's status changes.

back