class O2GTableColumn

Brief

The class provides access to a column of a trading table.

Details

Every column of the trading tables has a unique identifier and a data type. These properties of a column can be accessed by the methods of the class: getId and getType respectively.

To get an instance of the class, use one of the implementations of the O2GTableColumnCollection get methods.

Example

O2GTableColumn [hide]

 private void UseGenericTableInterface(O2GGenericTableResponseReader genericReader)
 {
    O2GTableColumnCollection columns = genericReader.Columns;
    for (int k = 0; k < columns.Count; k++)
    {
        O2GTableColumn column = columns[k];
        mSimpleLog.Log("{0} {1} {2}", k, column.ID, column.ColumnType);
    }
 }

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

Public Properties

ColumnType

Gets the data type of a column.

ID

Gets the unique identifier of a column.

back