Click or drag to resize
ITableGetColumnName Method
Returns the name of column index inColumnIdx

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

Parameters

inColumnIdx
Type: SystemInt32
the index of the column

Return Value

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