Difference between revisions of "QAS getParameters"

From Catglobe Wiki
Jump to: navigation, search
(Created page with "= QAS_getParameters = Questionnaire Functions __NOTOC__ This function will get '''all''' parameters that passed into a specific QAS. This function must be used in a specific ...")
 
(QAS_getParameters)
Line 1: Line 1:
 
= QAS_getParameters =
 
= QAS_getParameters =
[[Questionnaire Functions]]
+
[[Category:Questionnaire Functions]]
 
__NOTOC__
 
__NOTOC__
 
This function will get '''all''' parameters that passed into a specific QAS. This function must be used in a specific QAS context.<br />
 
This function will get '''all''' parameters that passed into a specific QAS. This function must be used in a specific QAS context.<br />

Revision as of 04:35, 22 December 2011

QAS_getParameters

This function will get all parameters that passed into a specific QAS. This function must be used in a specific QAS context.

Syntax

QAS_getParameters()

Arguments

none

Return type

A dictionary

  • The parameter name will be the key in the key/value pairs of dictionary.
  • The value of parameter will be the value in the key/value pairs of dictionary

See also

  • getParameter()

Examples

Dictionary parameters = QAS_getParameters();  // Must be used in a specific QAS context
print(parameters.ToString());                 //Result:     {"test":1,"signup":454,"point":100}