Click or drag to resize
ITableItem Property
Returns the row that is in index "idx" in the table.

Namespace: SurveyToGo.UserLogic.Interfaces
Assembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax
C#
ITableRow this[
	int idx
] { get; }

Parameters

idx
Type: SystemInt32
the index of the row

Property Value

Type: ITableRow
Remarks
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