Functions and constants relating to Groups
Details of functionsGetGroupInfo(group_id[integer]) [static]DescriptionReturns information about a group in the current model |
Group number
Returns |
Object with the following properties:
| Name | Type | Description |
| label | integer | The label of the group |
| name | string | The name of the group |
object
Example
// Print the name of the first group in the current model
var info = GetGroupInfo(1);
Print("Group name = " + info.name + "\n");
|