Concept Framework 1.0 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: Thu Oct 15 20:01:54 2009 GMT(c)2009 RadGs Software