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 getQASByIds: Difference between revisions

From Catglobe Wiki
Created page with "Category:Questionnaire_Functions ====QAS_getQASByIds==== Get list of QAS via list of qasId '''Syntax''' QAS_getQASByIds(''qasId'') '''Arguments''' * ''qasId'': is a..."
 
No edit summary
Line 15: Line 15:
'''Return value'''
'''Return value'''


Array of QAS
Array of QAS. Noted that list of QAS not in order with the list of qasId


'''Example'''
'''Example'''

Revision as of 07:56, 5 September 2019


QAS_getQASByIds

Get list of QAS via list of qasId

Syntax

QAS_getQASByIds(qasId)

Arguments

  • qasId: is a array expression. It is the list of qasId

Return value

Array of QAS. Noted that list of QAS not in order with the list of qasId

Example

array qasId = {123,456,789};
array a = QAS_getQASByIds(qasId);
print(a);//{QAS,QAS,QAS}
for(i for 0; a.Count)
{
	print(a[i].Id);
}