Home - Forums-.NET - FlyGrid.Net (Windows Forms) - Bring a treeview node into view

FlyGrid.Net (Windows Forms)

.NET Datagrid - Fast, highly customizable, industry standards .NET data grid control for WinForms

This forum related to following products: FlyGrid.Net

Bring a treeview node into view
Link Posted: 23-Jun-2007 18:04
If a treeview node is not hidden but it is not in view, how can I programmatically scroll the treeview so the node is in view?

Thanks,

-shl
Link Posted: 25-Jun-2007 20:29
you can use the EnsureVisible method:
[c#]
flyGrid.ActivePort.EnsureVisible(someNode);