Zooming a single node

TeeTree VCL for Borland Delphi and C++ Builder.
Post Reply
Collinor
Newbie
Newbie
Posts: 15
Joined: Wed Oct 31, 2007 12:00 am

Zooming a single node

Post by Collinor » Tue Sep 28, 2010 11:16 am

How can I zoom a single node and how can that node be displayed on top of the nodes in its neighbourhood?

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: Zooming a single node

Post by Narcís » Wed Oct 06, 2010 9:06 am

Hi Collinor,

Sorry for the delayed reply.

Yes, you can do something like this:

Code: Select all

  TreeNodeShape1.Resize(TreeNodeShape1.GetResizingHandle(TreeNodeShape1.Bounds.Right,
                        TreeNodeShape1.Bounds.Bottom), 100, 100);
  TreeNodeShape1.BringToFront;
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply