Click or drag to resize
IUserAccessiableGetAnswerOriginalText Method
Relevant only for grid question types. Gets a question index, an answer index and returns the original text (in case it was changed by Append\'Set' functions)

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

Parameters

inQuesIdx
Type: SystemInt32
Target question index
inAnswerIdx
Type: SystemInt32
Target answer index

Return Value

Type: String
Text object - string
Examples
If we have a question indexed 4, and we would like to get the text from answer number 2, we can use this function as follows: GetAnswerOriginalText(QRef(4),2);
See Also