Multiple selection question
To determine this question type:
BQ.TypeName = "Type_Multiple_Selection" and
((BlueWS.TypeMultipleSelection)BQ).IsSingleRow = true
Field | Description |
---|---|
Selection option labels | ((BlueWS.TypeMultipleSelection)bq).Cols |
Minimum selections required | ((BlueWS.TypeMultipleSelection)bq).Selection_Min |
Maximum selections required | ((BlueWS.TypeMultipleSelection)bq).Selection_Max |
NOTE
The raw response is stored in integer. Convert the number to binary, each bit maps to the index of a selected options. 1 means selected, zero means not selected.
Back to top