bool IsPlatform(ePlatform inPlatform)
Description
Returns true if the platform selected and false otherwise
Parameters
The following is a list of parameters the functions receives
| Parameter | Type | Description |
|---|---|---|
| inPlatform | ePlatform | Platform name to check (e.g.: Android, PC etc.) |
Return Type
bool
Example
To run a question only on Android Platform use this entrance rule:
IsPlatform(ePlatform.Android)
To know if the interview is run as a CAWI interview use:
IsPlatform(ePlatform.Web)

Comments
Please sign in to leave a comment.