Adds objects to an existing group.
Note: This command uses output arguments. C# and some
scripting languages (such as JScript, PerlScript and Python) don't support arguments passed by reference so you
need to use the best workaround for your situation:
For scripting languages this command returns an ISIVTCollection
which you can use to get the output arguments.
For C# you can use the XSIApplication.ExecuteCommand method to call this command. ExecuteCommand
packs the output arguments into a C# System.Object containing an Array of the output arguments (see
Calling Commands from C#).
SIAddToGroup( Target, [InputObjs], [OutputObj] ); |
Parameter | Type | Description |
---|---|---|
Target | String | Name of the group |
InputObjs | String |
List of objects to add to the group. Default Value: Selected objects |
OutputObj | Group | Returns the updated group |