Hello,
When I have a quite long name in a TTreeNodeShape, and if I click on this node, the Horizontal Scrollbar automaticly moves to its extreme right, which is very annoying. Is there a way to force the horizontal scrollbar to stay on its left ?
I tried to change the horzscrollbar.position, but it is a read-only property.
Problem with horzscrollbar when node's name is too long
Hi betrod,
you can the ScrollToView property to False (default = true).
as in
Regards,
tom
you can the ScrollToView property to False (default = true).
as in
Code: Select all
Tree1.Selected.ScrollToView := False;
tom