public method O2GMessagesTable.getNextRow
Brief
Gets the next row from the O2GMessagesTable.
| Declaration | ||||
|
||||
| Parameters | |
iterator |
The table iterator. |
row |
[out] The row. |
Details
If the row is not found, the method returns false.
Example
Get the next row from the Messages table [hide]
O2GMessagesTable messages = mTblMgr.getTable(O2GTableType.Messages);
O2GTableIterator iterator = new O2GTableIterator();
O2GmessageTableRow message = null;
while(messages.getNextRow(iterator, out message))
{
Console.WriteLine("MsgID={0}, From={1}, To={2}", message.MsgID, message.From, message.To);
}
Declared in O2GMessagesTable