Functions and constants relating to Includes
Details of functionsGetIncludeInfo(include_id[integer]) [static]DescriptionReturns information about an include file in the current model |
Include number
Returns |
Object with the following properties:
| Name | Type | Description |
| label | integer | The label of the include file |
| name | string | The name of the include file |
| parent | integer | The parent include file (0 if main file) |
object
Example
// Print the name of the first include file in the current model
var info = GetIncludeInfo(1);
Print("Include name = " + info.name + "\n");
|