Forum Discussion
chriscc
3 years agoContributor
Hi VirginiaSus3,
I wouldn't think wExpand is a property of the tree. It is most likely a property of a treeItem. So you would want to get the item first, then get the expanded property.
It might look something like this:
var treeItem = tree["wItems"]["Item"]("Routing Rules");
var expanded = treeItem["wExpanded"];
or this:
var treeItem = tree.wItems.Item("Routing Rules");
var expanded = treeItem.wExpanded;
I hope this helps.
Related Content
- 10 years ago
- 5 years ago
- 2 years ago
Recent Discussions
- 6 days ago
- 6 days ago
- 9 days ago