Click or drag to resize
IUserAccessiableAnswerCode Method
Returns the answer code of an answer in a non-grid questions

Namespace: SurveyToGo.UserLogic.Interfaces
Assembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax
C#
string AnswerCode(
	int inQuesIdx,
	int inAnswerIdx
)

Parameters

inQuesIdx
Type: SystemInt32
Target Question Index
inAnswerIdx
Type: SystemInt32
Targer Answer Index

Return Value

Type: String
String that hold the Answer Code
Examples
If I need to use the variable name of the answer (Answer Code) I can refer to it with this function by using its Question index (4) and Answer index (2), for example: AnswerCode(4,2);
See Also