The root item's children.
Usage
StringValue = Get_Property(OLECtrlEntID, "OLE.RootChildren")
Values
StringValue can be any string meeting the following format requirements:
Syntax: @FM delimited list of item keys
Remarks
The RootChildren property gets all the children of the Root Item. The Root Item is the implicit parent item of the entire tree, so reading this property gets you the list of all root level items. The illustration below highlights the root level items:
This property cannot be set. If you want to add items to the Root Item, use the AddItems property instead.
This property has an alias: RootItems. In other words, you can use either the RootChildren or RootItems properties to get the root level items.
Example
// Get the items at the root level RootItems = Get_Property(@Window:".OLE_TREE", "OLE.RootChildren")