Creating Cluster in Visual Studio (C#)

Hello everyone,

I’m trying to create a new component in Visual Studio (C#) that would be a cluster of already existing components, rather than a normal new component.
Are there any examples for this? (is it possible to do it?)

Thank you for help.
Saso

You want to place components on the canvas and into a cluster?
This may get you started. In python, it is something like this:

node = gh.Kernel.Parameters.Param_GenericObject()
ghdoc.AddObject(node,False,ghdoc.ObjectCount+1)

AddParamsToCanvas.gh (6.1 KB)