Click or drag to resize
ITableGetColumnIndex Method
Returns the index of column name inColumnName

Namespace: SurveyToGo.UserLogic.Interfaces
Assembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax
C#
int GetColumnIndex(
	string inColumnName
)

Parameters

inColumnName
Type: SystemString
the name of the column

Return Value

Type: Int32
Remarks
columns indexes are zero-based
Examples
for a table with these 3 columns in this given order: "A", "B", and "C", GetColumnIndex("C") will return 2 (as the index of column "C" is 2)
See Also