vote up 3 vote down star
1

Hello,

I have a system.windows.forms.treeview docked inside a panel that I am setting a node selected programically. What method or property would I use to have the treeview scroll the selected into view.

Thanks

flag

1 Answer

vote up 7 vote down check
node.EnsureVisible();

for example:

if(treeView.SelectedNode != null) treeView.SelectedNode.EnsureVisible();

(see MSDN)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.