GetSubQuestionText(question, subq id): Difference between revisions
From Catglobe Wiki
More actions
Created page with "getSubQuestionText Gets the text of a specific subquestion belonging to a question in userβs language or default language. Syntax Category:Questionnaire_Functions ===get..." Β |
No edit summary Β |
||
Line 1: | Line 1: | ||
getSubQuestionText | === getSubQuestionText === | ||
Gets the text of a specific subquestion belonging to a question in userβs language or default language. | Gets the text of a specific subquestion belonging to a question in userβs language or default language. Β | ||
Syntax | '''Syntax''' | ||
getSubQuestionText(question, subq_id) | |||
Β | |||
'''Arguments''' | |||
question: Is an question object. | |||
subq_id: Is a numeric expression representing the subquestion. Β | |||
subq_id | subq_id must not be a decimal expression. Β | ||
'''Return type''' | |||
string | |||
'''Example''' | |||
question MultiGrid_Question = getQuestion("MultiGrid_Question"); | |||
string text = getSubQuestionText(MultiGrid_Question, 1); Β | |||
print(text); Β | |||
'''Availability''' | |||
Version 4.8 | |||
[[Category:Questionnaire_Functions]] |
Latest revision as of 07:49, 2 February 2012
getSubQuestionText
Gets the text of a specific subquestion belonging to a question in userβs language or default language.
Syntax
getSubQuestionText(question, subq_id)
Arguments
question: Is an question object.
subq_id: Is a numeric expression representing the subquestion.
subq_id must not be a decimal expression.
Return type
string
Example
question MultiGrid_Question = getQuestion("MultiGrid_Question");
string text = getSubQuestionText(MultiGrid_Question, 1);
print(text);
Availability
Version 4.8