RTreeView.Items


public property Items

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.

Return value:

Returns a MultiItems structure encapsulating the RTreeeView items.

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