Toggle menu
862
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

GetSubQuestionText: Difference between revisions

From Catglobe Wiki
No edit summary
Line 4: Line 4:
====getSubQuestionText====
====getSubQuestionText====


Returns a string of subquestion text, apply for grid questions
Returns a string of subquestion text, apply for grid questions. This function run in question context


'''Syntax'''
'''Syntax'''

Revision as of 04:13, 23 August 2019



getSubQuestionText

Returns a string of subquestion text, apply for grid questions. This function run in question context

Syntax

getSubQuestionText(questionLabel, gridNumber)

or

getSubQuestionText(questionPath, gridNumber)

Arguments

questionLabel: is a string expression. It is the label of the question.

questionPath: is a string expression. It is the path of the question.

gridNumber: is the index of the sub question in the sub question list.

Return type

string

Example

string text = getSubQuestionText("Q1", 0);
//or
string text = getSubQuestionText(Q1.QuestionLabel, 0);
//or
string text = getSubQuestionText(Resource_getResourceName(qnaireRId) + "\\Q1", 0);

Availability

Version 5.2