Concept Framework 2.2 documentation Contents | Index

RTreeView.Items

Name Type Access Version Deprecated
Items property public version 1.0 no

Prototype:
Read property Items [MultiItems]


Description:
Represents the items kept by the RTreeView. The items are represented using a MultiItems structure. On this structure you can apply the [] operator or use the Count property.

Example:
	// One can retrieve the contents of the RTreeView as so
	var index=TreeView.RowIndex;
	var count=TreeView.Items.Count;
	echo "There are $count items in the TreeView ";
	if (index>-1)
		item= TreeView.Items[index];

Returns:
Returns a MultiItems structure encapsulating the RTreeeView items.

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