def expandBranch(node):
  node.expand()
  for ChildNode in node.Children:
    expandBranch(ChildNode)

expandBranch(rootNodeOfBranch)

On Mon, May 12, 2008 at 11:35 AM, Peter Decker <[EMAIL PROTECTED]> wrote:
> I'm using dTreeView to display hierarchichal information. I can see
>  how to expand a single node using expand(), and all nodes in the tree
>  with expandAll(), but how do I expand a single branch? In other words,
>  expand a node and all of its child nodes, while leaving the rest of
>  the tree unchanged?
>
>  --
>
>  # p.d.
>
>
[excessive quoting removed by server]

_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users
Searchable Archives: http://leafe.com/archives/search/dabo-users
This message: http://leafe.com/archives/byMID/[EMAIL PROTECTED]

Reply via email to