views:

153

answers:

1

Hi, is that possible to hide specific nodes in VirtualStringTree? I'm implementing "filtering" feature (the VST acts as a list with columns), and I'd like to avoid reloading content each time the filter is changed - instead, much faster would be to tell VST not to render specific items ... any solutions?

+8  A: 
VirtualTree.IsVisible[Node] := False;
Senseful
thanks! I was looking for something which starts with "visible";)
migajek