Articles in this section
Category / Section

How do I programmatically group nodes in a diagram?

2 mins read

Programmatically group nodes in a diagram

You need to use the GroupCmd class, which will create a Group node and populate it with the list of nodes attached to the command. Here is a code sample that demonstrates how you can group the nodes that are selected in a diagram.

[C#]

//New Groupcmd to group nodes GroupCmd gcmd = new GroupCmd(); //Add the selected nodes to the GroupCmd gcmd.Nodes.Concat(this.diagramComponent.SelectionList); //Execute the GroupCmd this.diagramComponent.ExecuteCommand(gcmd); diagramComponent.Refresh();

[VB.NET]

'New Groupcmd to group nodes Dim gcmd As GroupCmd =  New GroupCmd() 'Add the selected nodes to the GroupCmd gcmd.Nodes.Concat(Me.diagramComponent.SelectionList) 'Execute the GroupCmd Me.diagramComponent.ExecuteCommand(gcmd) diagramComponent.Refresh()


Conclusion

I hope you enjoyed learning about how to programmatically group nodes in a diagram.

You can refer to WinForms Diagram feature tour page to learn about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our WinForms Diagram example to understand how to create and manipulate data.

For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion®, you can try our 30-day free trial to check out our other controls.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forumsDirect-Trac, or feedback portal. We are always happy to assist you!

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please  to leave a comment
Access denied
Access denied