Returns the row that is in index "idx" in the table.
Namespace: SurveyToGo.UserLogic.InterfacesAssembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax ITableRow this[
int idx
] { get; }
Parameters
- idx
- Type: SystemInt32
the index of the row
Property Value
Type:
ITableRowRemarks rows indexes are zero-based
Examples
for a table "MyTable" with 3 rows, MyTable[1] will return the second row (the row with index 2)
See Also