Concept Framework 2.2 documentation Contents | Index

RComboBox.Items

Name Type Access Version Deprecated
Items property public version 1.0 no

Prototype:
Read property Items [Read only MultiItems]


Description:
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.

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];

Returns:
Returns a MultiItems structure encapsulating the RComboBox items.

Documented by Eduard Suica, generation time: Sun Jan 27 18:15:06 2013 GMT(c)2013 Devronium Applications