We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

group nodes, know each node?

Hi,

When I group some nodes, I need to identify every node in the group by name, is it possible?

Thanks in advanced,

 Blanca

 

 

 


1 Reply

AA Amsath Ali M Syncfusion Team March 15, 2013 07:06 AM UTC

Hi Blanca,

 

Thanks for using Syncfusion products.

 

We suggest you use either the Node’s ‘FullName’ or the ‘Name’ property to achieve your requirement. Please refer the below code snippet.

 

Here is the code:

[C#]

Group grp = diagram1.Model.Nodes[0] as Group;

            foreach (Node node in grp.Nodes)

                listBox1.Items.Add(node.FullName);

Here is the sample:

F107712.zip

 

Please let us know if you have any queries.

 

Regards,

Amsath Ali. M


Loader.
Live Chat Icon For mobile
Up arrow icon