bool Equals(Int32 inQuesIdx, object inValue)
Description
Returns true if the answer of inQuesIdx is inValue.
It is equivalent to Answer(inQuesIdx)==inValue
Parameters
The following is a list of parameters the functions receivesÂ
Parameter | Type | Description |
---|---|---|
inQuesIdx | Int32 | Question Index |
inValue | object | The value to check |
Return Type
bool
Examples
Equals(QRef(5), 2) will return true if question 5's answer is 2
Comments
Please sign in to leave a comment.