From: Robin Dunn Date: Mon, 3 Jul 2006 22:28:05 +0000 (+0000) Subject: Added ExpandAll and ExpandAllChildren X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/47136f0f6d2f002d29d200db80d5635f2f53628b?ds=inline Added ExpandAll and ExpandAllChildren git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39962 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/src/_treectrl.i b/wxPython/src/_treectrl.i index 190c189182..4248e589e7 100644 --- a/wxPython/src/_treectrl.i +++ b/wxPython/src/_treectrl.i @@ -652,6 +652,12 @@ public: // expand this item void Expand(const wxTreeItemId& item); + // expand the item and all its childs and thats childs + void ExpandAllChildren(const wxTreeItemId& item); + + // expand all items + void ExpandAll(); + // collapse the item without removing its children void Collapse(const wxTreeItemId& item);