How to check if a node is visible (on screen) with VirtualTreeView component? Something like this:
if not Grid.NodeVisible (Node) then
Grid.ScrollIntoView (Node, True);
The node should be centered if it was not visible, but remain where it is if it was visible.
Note that I am not talking about the node's visible flag, but about visility on the screen.
The IsVisible
property always returns True
in my case.