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

QAS getByGuid: Difference between revisions

From Catglobe Wiki
Tungocman (talk | contribs)
No edit summary
No edit summary
Line 16: Line 16:
'''Return value'''
'''Return value'''


An array, it is the answer sheet object, which has the same format as what created by ''QAS_new ''function
An array, it is the answer sheet object, which has the same format as what created by [[QAS_new]] function


'''Example'''
'''Example'''
 
<source lang="javascript">
''array qas = QAS_getByGuid("781fc858-3007-42bf-b801-540de8df228c");''
array qas = QAS_getByGuid("781fc858-3007-42bf-b801-540de8df228c");
 
print(qas);
''print(qas);''
 
//{15,82115249,36314707,36285016,False,1,False,{1,1,1,1,0,0,0,1,40},{1,1,1,1,0,0,0,1,40},781fc858-3007-42bf-b801-540de8df228c,{1,1,1,0,0,0,0,1,40},5,0,23343}
//{15,82115249,36314707,36285016,False,1,False,{1,1,1,1,0,0,0,1,40},{1,1,1,1,0,0,0,1,40},781fc858-3007-42bf-b801-540de8df228c,{1,1,1,0,0,0,0,1,40},5,0,23343}
</source>

Revision as of 09:30, 3 January 2019



QAS_getByGuid

Get a questionnaire answer sheet by its GUID. If no answer sheet is found, empty will be returned.

Syntax

QAS_getByGuid(qasGuid)

Arguments

  • qasGuid: is a string expression. It is the questionnaire answer sheet's GUID

Return value

An array, it is the answer sheet object, which has the same format as what created by QAS_new function

Example

array qas = QAS_getByGuid("781fc858-3007-42bf-b801-540de8df228c");
print(qas);
//{15,82115249,36314707,36285016,False,1,False,{1,1,1,1,0,0,0,1,40},{1,1,1,1,0,0,0,1,40},781fc858-3007-42bf-b801-540de8df228c,{1,1,1,0,0,0,0,1,40},5,0,23343}