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.

GetProjectQuestionnaireName: Difference between revisions

From Catglobe Wiki
Cg_pham (talk | contribs)
No edit summary
Line 4: Line 4:
====getProjectQuestionnaireName====
====getProjectQuestionnaireName====


Returns the name of the questionnaire specified by its id
Returns the qualified name of the questionnaire specified by its id


'''Syntax'''
'''Syntax'''
Line 23: Line 23:


print(pqName);
print(pqName);
//Output : "nguyen tan phong\phong questionnaire 1"


'''Availability'''
'''Availability'''

Revision as of 10:16, 28 December 2011



getProjectQuestionnaireName

Returns the qualified name of the questionnaire specified by its id

Syntax

getProjectQuestionnaireName(id)

Arguments

id: is a numeric expression. It is the id of a questionnaire.

Return type

string

Example

string pqName = getProjectQuestionnaireName(1);

print(pqName);

//Output : "nguyen tan phong\phong questionnaire 1"


Availability

Version 5.2

getProjectQuestionnaireName (alternative)

Returns the name of the current questionnaire.

Syntax

getProjectQuestionnaireName()

Arguments

None

Return type

string

Example

string pqName = getProjectQuestionnaireName();

print(pqName);

Availability

Version 5.2