Represents the items kept by the RComboBox. The items are represented using a MultiItems structure. On this structure you can apply the [] operator and the Count operator.
Return value:
Returns a MultiItems structure encapsulating the RComboBox items.
Example
// One can retrieve the contents of the RComboBox as so
var index=ComboBox.RowIndex;
var count=ComboBox.Items.Count;
echo "There are $count items in the ComboBox";
if (index>-1)
item=ComboBox.Items[index];