The COCheckBoxMatrix is a modification of CheckBoxMatrix which really allows a matrix of CheckBoxs unlike the original which only allowed a row. Instead of isVertical, this has been replaced with numberColumns. A table of checkboxes will be built with that number of columns.
In order to distinguish the WOCheckBoxes used in this component from those in any other component, you must pass a name 'matrixName'. In addition, you must pass an array of strings 'list' that will serve as the labels and the values of the check boxes. Finally, you must indicate which items 'selections' are selected
In the parent component you must declare the list(in example below called arrayList) and the selections(in example called selectedItems). You must allocate a mutable array for selections.
Example of parent .wos file
id arrayList; // defined as list in .wod
id selectedItems; // defined as selections in .wod