| ITableGetColumnIndex Method  | 
            Returns the index of column name inColumnName
            
 
Namespace: SurveyToGo.UserLogic.InterfacesAssembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntaxint GetColumnIndex(
	string inColumnName
)
Parameters
- inColumnName
 - Type: SystemString
the name of the column 
Return Value
Type: 
Int32
Remarkscolumns 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