Item-To-Add
When a value is assigned to this property, a new item is added to the list.
Multiple values can be added at the same time, enclosed between parentheses.
The position of the new item can be controlled by the Insertion-Index property, provided that the Combo-Box control has the Unsorted style set.
 
Example - Add a new item to the combo-box
procedure division.
...
   modify screen-1-co-1 item-to-add ("Blue""Cyan""Green").
...