Difference between revisions of "QAS getQASById"

From Catglobe Wiki
Jump to: navigation, search
 
(2 intermediate revisions by the same user not shown)
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
 +
 
 +
In later version, return value is [[QAS_class]]
  
 
'''Example'''
 
'''Example'''
 
+
<source lang="csharp">
''array qas = QAS_getQASById(123456);''
+
array qas = QAS_getQASById(123456);
 
+
print(qas);
''print(qas);''
+
//old return:{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}
 
+
//new return: 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}
+
</source>
 
 
 
'''Availability'''
 
'''Availability'''
  
 
Version 5.6
 
Version 5.6
 +
 
__NOTOC__
 
__NOTOC__
 
<!-- imported from file: 6267.htm-->
 
<!-- imported from file: 6267.htm-->

Latest revision as of 10:58, 7 August 2019



QAS_getQASById

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

Syntax

QAS_getQASById(qasId)

Arguments

  • qasId: is a number expression. It is the questionnaire answer sheet's id

Return value

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

In later version, return value is QAS_class

Example

array qas = QAS_getQASById(123456);
print(qas);
//old return:{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}
//new return: QAS

Availability

Version 5.6