Multiple selection table question
To determine this question type:
BQ.TypeName = "Type_Multiple_Selection"
((BlueWS.TypeMultipleSelection)BQ).IsSingleRow = false
Field | Description |
---|---|
Selection option labels | ((BlueWS.TypeMultipleSelection)bq).Cols |
Row labels | ((BlueWS.TypeMultipleSelection)bq).Rows |
Maximum selections required | ((BlueWS.TypeMultipleSelection)bq).Selection_Max |
Minimum selections required | ((BlueWS.TypeMultipleSelection)bq).Selection_Min |
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. Every row in multiple selection table question maps to a unique column in response table.
Back to top